Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kemokemo/my-grpc-go-sample
https://github.com/kemokemo/my-grpc-go-sample
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/kemokemo/my-grpc-go-sample
- Owner: kemokemo
- Created: 2022-01-09T06:45:28.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-09T06:52:26.000Z (almost 3 years ago)
- Last Synced: 2023-07-27T22:16:55.238Z (over 1 year ago)
- Language: Go
- Size: 8.79 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My gRPC sample app
If you update `echo.proto`, please execute the following to re-generate code:
```sh
protoc --go_out=. --go_opt=paths=source_relative \
--go-grpc_out=. --go-grpc_opt=paths=source_relative \
echo.proto
```## Run server
```sh
cd server
go run main.go
```