Files
roto/examples/hello_world/proto/hello.proto
T

16 lines
217 B
Protocol Buffer

syntax = "proto3";
package hello;
service HelloWorldService {
rpc HelloWorld (HelloRequest) returns (HelloResponse);
}
message HelloRequest {
string name = 1;
}
message HelloResponse {
string message = 1;
}