Files
Addlicense/testdata/initial/file.proto
2016-06-27 12:03:58 +01:00

18 lines
306 B
Protocol Buffer

syntax = "proto3";
package helloworld;
service Greeter {
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings
message HelloReply {
string message = 1;
}