syntax = "proto3"; package example; option go_package = "github.com/example/my-swagger-service/gen/example"; service HelloService { rpc SayHello (HelloRequest) returns (HelloReply); } message HelloRequest { string name = 1; } message HelloReply { string message = 1; }