firest commit
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
Reference in New Issue
Block a user