mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
18 lines
317 B
Protocol Buffer
18 lines
317 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./admin_cms;admin_cms";
|
|
package admin_cms;
|
|
|
|
message AdminLoginReq {
|
|
string OperationID = 1;
|
|
string AdminID = 2;
|
|
string Secret = 3;
|
|
}
|
|
|
|
|
|
message AdminLoginResp {
|
|
string token = 1;
|
|
}
|
|
|
|
service adminCMS {
|
|
rpc AdminLogin(AdminLoginReq) returns(AdminLoginResp);
|
|
} |