-
proto
directory Defines the gRPC service and messages using Protocol Buffers -
server
directory Implements the gRPC server and includes the Fiber HTTP server -
client
directory Implements a simple gRPC client that connects to the gRPC server and sends a SayHello request.
// Run server
$ go run server/main.go
// Run client
$ go run client/main.go
// Test HTTP endpoint
$ curl http://localhost:3000/hello/developer