An open API service indexing awesome lists of open source software.

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.

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
```