From dc76ca9a385487c16226e9bd6548db8ec4c5c2e7 Mon Sep 17 00:00:00 2001 From: jamesread Date: Tue, 25 May 2021 10:18:49 +0100 Subject: [PATCH] tools.go, not sure how this works though! --- tools.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tools.go diff --git a/tools.go b/tools.go new file mode 100644 index 0000000..519c21d --- /dev/null +++ b/tools.go @@ -0,0 +1,10 @@ +// +build tools + +package tools + +import ( + _ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-grpc-gateway" + _ "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2" + _ "google.golang.org/grpc/cmd/protoc-gen-go-grpc" + _ "google.golang.org/protobuf/cmd/protoc-gen-go" +)