tools.go 617 B

1234567891011121314151617
  1. //go:build tools
  2. // +build tools
  3. // package tool pins a number of Go dependencies that we use. Go builds really fast,
  4. // so wherever we can, we just build from source rather than pulling in third party binaries.
  5. package main
  6. //noinspection ALL
  7. import (
  8. _ "github.com/bufbuild/buf/cmd/buf"
  9. _ "github.com/fullstorydev/grpcurl/cmd/grpcurl"
  10. _ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
  11. _ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
  12. _ "github.com/spf13/cobra/cobra"
  13. _ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
  14. _ "google.golang.org/protobuf/cmd/protoc-gen-go"
  15. )