tools.go 551 B

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