You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
424 B
Protocol Buffer
33 lines
424 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package hi;
|
|
|
|
option go_package = "./hi";
|
|
|
|
message HiReq {
|
|
string in = 1;
|
|
}
|
|
|
|
message HelloReq {
|
|
string in = 1;
|
|
}
|
|
|
|
message HiResp {
|
|
string msg = 1;
|
|
}
|
|
|
|
message HelloResp {
|
|
string msg = 1;
|
|
}
|
|
|
|
service Greet {
|
|
rpc SayHi(HiReq) returns (HiResp);
|
|
rpc SayHello(HelloReq) returns (HelloResp);
|
|
}
|
|
|
|
message EventReq{}
|
|
message EventResp{}
|
|
|
|
service Event {
|
|
rpc AskQuestion(EventReq) returns (EventResp);
|
|
} |