Fix protobuf

* Rebuiild with protoc v3.17.2 and protoc-gen-go v1.26.0
* Add misisng go_package flag
* Add protobuf documentation
This commit is contained in:
lspgn
2021-06-07 22:43:09 -07:00
parent 622c41a69d
commit ab81e52b43
7 changed files with 52 additions and 25 deletions

View File

@@ -25,8 +25,8 @@ OUTPUT := $(DIST_DIR)goflow2-$(VERSION_PKG)-$(GOOS)-$(ARCH)$(EXTENSION)
.PHONY: proto
proto:
@echo generating protobuf
protoc --go_out=. pb/*.proto
protoc --go_out=. cmd/enricher/pb/*.proto
protoc --go_opt=paths=source_relative --go_out=. pb/*.proto
protoc --go_opt=paths=source_relative --go_out=. cmd/enricher/pb/*.proto
.PHONY: vet
vet: