mirror of
https://gitee.com/cv_team/uestc-careye.git
synced 2024-12-02 03:38:24 +08:00
17 lines
210 B
Protocol Buffer
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;
|
|
}
|