uestc-careye/resource/helloworld.proto
2020-05-30 16:11:32 +08:00

17 lines
210 B
Protocol Buffer

syntax = "proto3";
package helloworld;
service Greeter {
rpc Add (HelloRequest) returns (HelloReply) {}
}
message HelloRequest {
int32 a = 1;
int32 b = 2;
}
message HelloReply {
int32 result = 1;
}