grpcexercises/consuldemo/ReadMe.md

13 lines
347 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## proto目录
存放proto文件用于生成pb.go文件
## pb目录
存放pb.go文件用于生成pb.go文件
## 生成pb.go文件
```shell
protoc -Iproto/ --go_out=. --go_opt=module=git.gqnotes.com/guoqiang/grpcexercises/consuldemo --go-grpc_out=. --go-grpc_opt=module=git.gqnotes.com/guoqiang/grpcexercises/consuldemo proto/*.proto
```