2021-08-24 09:32:20 -07:00
|
|
|
//go:build tools
|
2021-06-08 05:20:25 -07:00
|
|
|
// +build tools
|
|
|
|
|
2020-08-15 13:14:24 -07:00
|
|
|
// package tool pins a number of Go dependencies that we use. Go builds really fast,
|
|
|
|
// so wherever we can, we just build from source rather than pulling in third party binaries.
|
2020-10-16 11:48:53 -07:00
|
|
|
package main
|
2020-08-15 13:14:24 -07:00
|
|
|
|
|
|
|
//noinspection ALL
|
|
|
|
import (
|
|
|
|
_ "github.com/bufbuild/buf/cmd/buf"
|
2021-12-02 16:02:32 -08:00
|
|
|
_ "github.com/fullstorydev/grpcurl/cmd/grpcurl"
|
2021-07-30 14:04:49 -07:00
|
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway"
|
|
|
|
_ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2"
|
2022-08-05 10:49:57 -07:00
|
|
|
_ "github.com/spf13/cobra-cli"
|
2020-10-16 11:48:53 -07:00
|
|
|
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
|
|
|
|
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
|
2020-08-15 13:14:24 -07:00
|
|
|
)
|