juno/proto/helloworld.proto

15 lines
210 B
Protocol Buffer

syntax = "proto3";
package helloworld;
service Greater {
rpc SayHello (HelloRequest) returns (HelloResponse);
}
message HelloRequest {
string name = 1;
}
message HelloResponse {
string message = 1;
}