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

https://github.com/voo-su/proto


https://github.com/voo-su/proto

grpc grpc-protobuf grpc-protos voo-su voosu

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# gRPC Proto Files

This repository contains `.proto` files for use with gRPC.

## Usage

To generate code, use the following command for Go:
```bash
protoc --proto_path=. --go_out=paths=source_relative:./pb --go-grpc_out=paths=source_relative:./pb *.proto
```

To generate Dart code, use the following command:
```bash
protoc --proto_path=. --dart_out=grpc:./pb *.proto
```