mirror of
https://github.com/opentffoundation/opentf.git
synced 2025-12-19 17:59:05 -05:00
15 lines
334 B
Go
15 lines
334 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golang/mock/mockgen"
|
|
_ "github.com/golang/protobuf/protoc-gen-go"
|
|
_ "github.com/mitchellh/gox"
|
|
_ "golang.org/x/tools/cmd/cover"
|
|
_ "golang.org/x/tools/cmd/stringer"
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
_ "honnef.co/go/tools/cmd/staticcheck"
|
|
)
|