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
- Host: GitHub
- URL: https://github.com/voo-su/proto
- Owner: voo-su
- Created: 2025-01-02T07:32:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-14T10:22:11.000Z (7 months ago)
- Last Synced: 2025-09-14T12:21:26.260Z (7 months ago)
- Topics: grpc, grpc-protobuf, grpc-protos, voo-su, voosu
- Homepage:
- Size: 209 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```