https://github.com/rhaqim/grpcpractice
Practicing gRPC in Golang.
https://github.com/rhaqim/grpcpractice
Last synced: 4 months ago
JSON representation
Practicing gRPC in Golang.
- Host: GitHub
- URL: https://github.com/rhaqim/grpcpractice
- Owner: Rhaqim
- Created: 2022-08-27T14:29:07.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-03T23:29:40.000Z (almost 3 years ago)
- Last Synced: 2025-01-11T01:56:21.590Z (5 months ago)
- Language: Go
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Update proto file after change by running:
```bash
protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative checks/checks.proto
```### Default behavior is to use the current working directory as the root of the generated code.
```bash
protoc --go_out=plugins=grpc:. *.proto
```