Testing the waters with gRPC and some small microservices.
Currently built-out:
- MessageService
- MessageService Test Coverage
# right now docker is not set up so it's cli only
go run main.go
Run the service
❯ grpcurl --plaintext -d '{Body: "Hello, World!"}' 0.0.0.0:9000 protos.messageservice.MessageService/Message
{
"body": "Hello, World!"
}
cd messageservice/cmd && go test