Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 528 Bytes

File metadata and controls

20 lines (14 loc) · 528 Bytes

go-server-grpc-testing

Summary

  • This repository sets up a simple golang server with gRPC that receives a Message proto file.

Modified template from [quick start]: https://grpc.io/docs/languages/go/quickstart

Follow these setup to run the example:

  1. Get the code:

  2. Run the server:

    $ cd greeter_server
    $ go run main.go
  3. Server now monitors and prints any incoming message with the header.

Client code: (android-client)