Fix proto gen

This commit is contained in:
CrazyMax
2022-11-20 16:58:31 +01:00
parent 19c4a7d1f4
commit 0dd85a21a9
3 changed files with 24 additions and 26 deletions

11
tools/tools.go Normal file
View File

@@ -0,0 +1,11 @@
//go:build tools
// +build tools
// Package tools tracks dependencies on binaries not referenced in this codebase.
// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
package tools
import (
_ "google.golang.org/grpc/cmd/protoc-gen-go-grpc"
_ "google.golang.org/protobuf/cmd/protoc-gen-go"
)