syntax="proto3"; package protos; option go_package = ".;protos"; // 游戏服务器到客户端协议 message Request{ int32 msgId = 1; uint64 guid = 2; string msgName = 3; bytes req = 10; } message Response{ int32 msgId = 1; uint64 guid = 2; string msgName = 3; int32 ec = 4; bytes res = 10; }