2021-09-01 20:09:02 +00:00
|
|
|
//go:build tools
|
2018-08-26 18:54:24 +00:00
|
|
|
|
2019-01-08 00:37:16 +00:00
|
|
|
package influxdb
|
2018-08-26 18:54:24 +00:00
|
|
|
|
|
|
|
import (
|
2018-12-19 16:12:14 +00:00
|
|
|
_ "github.com/benbjohnson/tmpl"
|
2019-02-16 00:58:20 +00:00
|
|
|
_ "github.com/editorconfig-checker/editorconfig-checker/cmd/editorconfig-checker"
|
2020-03-30 21:02:40 +00:00
|
|
|
_ "github.com/influxdata/pkg-config"
|
2018-08-26 18:54:24 +00:00
|
|
|
_ "github.com/kevinburke/go-bindata/go-bindata"
|
|
|
|
_ "github.com/mna/pigeon"
|
2021-01-29 16:50:57 +00:00
|
|
|
_ "golang.org/x/tools/cmd/goimports"
|
2018-12-19 23:43:45 +00:00
|
|
|
_ "golang.org/x/tools/cmd/stringer"
|
2021-11-02 21:00:54 +00:00
|
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
2021-05-24 19:29:28 +00:00
|
|
|
_ "gopkg.in/yaml.v2"
|
2019-09-04 22:41:48 +00:00
|
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
2018-08-26 18:54:24 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This package is a workaround for adding additional paths to the go.mod file
|
|
|
|
// and ensuring they stay there. The build tag ensures this file never gets
|
|
|
|
// compiled, but the go module tool will still look at the dependencies and
|
|
|
|
// add/keep them in go.mod so we can version these paths along with our other
|
|
|
|
// dependencies. When we run build on any of these paths, we get the version
|
|
|
|
// that has been specified in go.mod rather than the master copy.
|