tools.go 343 B

12345678910
  1. //go:build tools
  2. // +build tools
  3. // We include our tool dependencies for `go generate` here to ensure they're
  4. // properly tracked by the go tool. See the Go Wiki for the rationale behind this:
  5. // https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module.
  6. package dns
  7. import _ "golang.org/x/tools/go/packages"