tools.go 428 B

1234567891011121314
  1. //go:build tools
  2. // +build tools
  3. package tools
  4. import (
  5. _ "github.com/bufbuild/buf/cmd/buf"
  6. _ "github.com/fzipp/gocyclo/cmd/gocyclo"
  7. _ "github.com/go-critic/go-critic/cmd/gocritic"
  8. _ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
  9. _ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
  10. _ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
  11. _ "google.golang.org/protobuf/cmd/protoc-gen-go"
  12. )