mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-28 18:01:01 -06:00
799ab6c951
This allows us to remove the manual replace directives github.com/dgrijalva/jwt-go and google.golang.org/grpc, so that we can remove the CVE warnings and update the grpc packages. While the etcdv3 backend is also marked as deprecated, the changes here are done in a manner to keep that backend working for the time being.
15 lines
325 B
Go
15 lines
325 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
import (
|
|
_ "github.com/golang/mock/mockgen"
|
|
_ "github.com/mitchellh/gox"
|
|
_ "github.com/nishanths/exhaustive"
|
|
_ "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"
|
|
)
|