meta: initial commit (archival)
This commit is contained in:
16
proto/helloworld.proto
Normal file
16
proto/helloworld.proto
Normal file
@@ -0,0 +1,16 @@
|
||||
syntax = "proto3";
|
||||
package helloworld;
|
||||
|
||||
service Greeter {
|
||||
rpc SayHello (HelloRequest) returns (HelloResponse);
|
||||
}
|
||||
|
||||
message HelloRequest {
|
||||
// Request message contains the name to be greeted
|
||||
string name = 1;
|
||||
}
|
||||
|
||||
message HelloResponse {
|
||||
// Reply contains the greeting message
|
||||
string message = 1;
|
||||
}
|
Reference in New Issue
Block a user