This repository has been archived on 2026-01-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Game/Server/common/proto/grpc/gateway.proto

15 lines
230 B
Protocol Buffer

syntax = "proto3";
option go_package = "common/proto/gen/grpc_pb";
import "common.proto";
service Gateway {
rpc ToClient(stream ToClientReq) returns (Empty) {}
}
message ToClientReq {
int32 UID = 1;
bytes Payload = 2;
}