edb/proto/api.proto

17 lines
318 B
Protocol Buffer
Raw Normal View History

2020-03-04 10:09:19 +00:00
syntax = "proto3";
2020-03-04 21:12:38 +00:00
package goproto;
2020-03-04 10:09:19 +00:00
// 服务端定义
service EasyData {
// 服务端返馈信息方法
rpc CreateTable(TableRequest) returns (TableReply) {}
}
// 包含用户名的请求信息
message TableRequest {
string name = 1;
}
// 服务端响应信息
message TableReply {
string msg = 1;
}