https://github.com/berquerant/firehose-proto
https://github.com/berquerant/firehose-proto
go grpc protobuf
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/berquerant/firehose-proto
- Owner: berquerant
- Created: 2023-02-24T19:42:27.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-28T18:19:21.000Z (almost 3 years ago)
- Last Synced: 2025-02-06T16:58:42.600Z (over 1 year ago)
- Topics: go, grpc, protobuf
- Language: Go
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# firehose-proto
# Initialize
``` bash
git submodule update --init
make docker
```
# Add proto
Create a new directory and add a proto file to it.
Compile `example/example.proto` by
``` bash
make example/example.pb.go
```
`example/example.pb.go` should belong to package example.
# Test
``` bash
make dev
```
# Regenerate code
``` bash
make generate
```