2021-10-05 13:07:25 +00:00
|
|
|
//go:build tools
|
2021-03-03 21:24:49 +00:00
|
|
|
// +build tools
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-03-31 17:51:37 +00:00
|
|
|
_ "github.com/benbjohnson/tmpl"
|
2021-03-30 21:14:15 +00:00
|
|
|
_ "github.com/gogo/protobuf/protoc-gen-gogo"
|
|
|
|
_ "github.com/gogo/protobuf/protoc-gen-gogofaster"
|
2021-03-03 21:24:49 +00:00
|
|
|
_ "github.com/influxdata/pkg-config"
|
|
|
|
_ "golang.org/x/tools/cmd/goimports"
|
|
|
|
)
|