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

https://github.com/knwoop/go-grpc-echo


https://github.com/knwoop/go-grpc-echo

Last synced: about 1 year ago
JSON representation

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
```