edb/proto/test.proto
2020-03-05 18:10:40 +08:00

16 lines
248 B
Protocol Buffer

syntax = "proto3";
package goproto;
import "api.proto";
// 服务端定义
service Test {
// 服务端返馈信息方法
rpc SayHello(Request) returns (Reply) {}
}
// 包含用户名的请求信息
message Request {
string what = 1;
}