Files
go-unifi/tools.go
Joshua Spence b6f2d95b18 Add goreleaser config (#107)
Notes for future self:

  - **To run a "local" release:** `goreleaser release --snapshot --clean`
  - **To check configuration file:** `goreleaser check`
  - **To create a new release:** `goreleaser release`
2023-02-27 09:41:38 +11:00

11 lines
191 B
Go

//go:build tools
// +build tools
package main
import (
_ "github.com/golangci/golangci-lint/cmd/golangci-lint"
_ "github.com/goreleaser/goreleaser"
_ "golang.org/x/tools/cmd/stringer"
)