12 lines
166 B
Protocol Buffer
12 lines
166 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package Byway.Thrift.Data.Net;
|
|
|
|
option go_package = "../msg";
|
|
|
|
message ClientRes{
|
|
string func = 1;
|
|
string cid = 2;
|
|
bytes info = 3;
|
|
}
|