1 //go:build tools 2 3 package rules_go 4 5 // These imports only exist to keep go.mod entries for packages that are referenced in BUILD files, 6 // but not in Go code. 7 8 import ( 9 _ "github.com/gogo/protobuf/proto" 10 _ "github.com/golang/mock/mockgen" 11 _ "github.com/golang/protobuf/protoc-gen-go" 12 _ "golang.org/x/net/context" 13 _ "google.golang.org/genproto/protobuf/api" 14 _ "google.golang.org/grpc" 15 _ "google.golang.org/protobuf/cmd/protoc-gen-go" 16 _ "google.golang.org/grpc/cmd/protoc-gen-go-grpc" 17 ) 18