16 lines
253 B
Protocol Buffer
16 lines
253 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;
|
|
int32 MessageID = 2;
|
|
bytes Payload = 3;
|
|
}
|
|
|