tools.go 335 B

1234567891011
  1. // +build tools
  2. package tools
  3. import (
  4. _ "github.com/bufbuild/buf/cmd/buf"
  5. _ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
  6. _ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
  7. _ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
  8. _ "google.golang.org/protobuf/cmd/protoc-gen-go"
  9. )