No description
- Go 89.6%
- Just 10.4%
| cmd | ||
| proto | ||
| go.mod | ||
| go.sum | ||
| Justfile | ||
| readme.md | ||
playing with grpc
cool, can I add grpc to my resume now?
usage
Start grpc server with
go run cmd/server/main.go
and then test it with grpcurl
grpcurl -plaintext -d '{"name": "Dan"}' localhost:5000 proto.HelloService/Hello
or start client with
go run cmd/client/main.go
and open http://localhost:5001/hello?name=Dan in the browser.