初始化提交

This commit is contained in:
2026-01-07 10:25:32 +08:00
parent f184e37c6b
commit 58c88cf53a
46 changed files with 8815 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
syntax = "proto3";
option go_package = "common/proto/ss/grpc_pb";
import "ss_common.proto";
service Gateway {
// 发送消息到客户端
rpc ToClient(stream ToClientReq) returns (ToClientResp) {}
rpc KickUser(KickUserReq) returns (KickUserResp) {}
}
message ToClientReq {
int64 USN = 1;
int32 MessageID = 2;
bytes Payload = 3;
}
message ToClientResp {
}
message KickUserReq {
int64 USN = 1;
}
message KickUserResp {
}