mirror of
https://github.com/Mrs4s/MiraiGo.git
synced 2025-05-04 19:17:38 +08:00
18 lines
277 B
Protocol Buffer
18 lines
277 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "./;qweb";
|
|
|
|
message QWebReq {
|
|
int64 seq = 1;
|
|
string qua = 2;
|
|
string deviceInfo = 3;
|
|
bytes busiBuff = 4;
|
|
string traceId = 5;
|
|
}
|
|
|
|
message QWebRsp {
|
|
int64 seq = 1;
|
|
int64 retCode = 2;
|
|
string errMsg = 3;
|
|
bytes busiBuff = 4;
|
|
} |