https://github.com/knwoop/go-grpc-echo
https://github.com/knwoop/go-grpc-echo
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/knwoop/go-grpc-echo
- Owner: knwoop
- Created: 2019-05-05T11:18:09.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-27T18:28:42.000Z (almost 7 years ago)
- Last Synced: 2025-04-01T23:40:26.394Z (over 1 year ago)
- Language: Go
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Unary RPC --- 1 request / 1 response
### compile .proto file
```
$ protoc --proto_path proto --go_out=plugins=grpc:./proto/ ./proto/echo.proto
```
### Run the gRPC server
```
$ go run ./server
```
### Execute the client app
```
$ go run ./client hello
```