18 lines
282 B
Protocol Buffer
18 lines
282 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message GetUserInfoReq {
|
|
int64 id = 1;
|
|
}
|
|
|
|
message GetUserInfoResp {
|
|
int64 id = 1;
|
|
string nickname = 2;
|
|
}
|
|
|
|
service Usercenter {
|
|
rpc GetUserInfo(GetUserInfoReq) returns (GetUserInfoResp);
|
|
} |