You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
252 B
Protocol Buffer

syntax = "proto3";
package pb;
option go_package = "/pb";
message JoinRoomReq {
int64 LiveRoomId = 1; // 直播间ID
}
message JoinRoomResp {
int64 Code = 1;
string Result = 2;
}
message Client {
int64 Id = 1; // 客户端ID(直播间ID)
}