Merge PR #6325: Add GRPCRouter

This commit is contained in:
Aaron Craelius
2020-06-03 09:33:51 -04:00
committed by GitHub
parent 1f5626b800
commit e94b6736ed
10 changed files with 1079 additions and 29 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ proto_dirs=$(find . -path ./third_party -prune -o -name '*.proto' -print0 | xarg
for dir in $proto_dirs; do
protoc \
-I. \
--gocosmos_out=plugins=interfacetype,paths=source_relative,\
--gocosmos_out=plugins=interfacetype+grpc,paths=source_relative,\
Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. \
$(find "${dir}" -maxdepth 1 -name '*.proto')
done