feat 协议移动到Public

This commit is contained in:
2025-12-15 11:22:59 +08:00
parent 6e19d93f5e
commit 3498cf158d
45 changed files with 2730 additions and 929 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
option go_package = "common/proto/ss/grpc_pb";
import "ss_common.proto";
service Gateway {
rpc ToClient(stream ToClientReq) returns (ToClientResp) {}
}
message ToClientReq {
int32 UID = 1;
int32 MessageID = 2;
bytes Payload = 3;
}
message ToClientResp {
}