coco/core.proto

16 lines
310 B
Protocol Buffer

syntax = "proto3";
package coco;
option go_package = "./;coco";
message ErrMsg {
int32 err_code = 1; // 错误码
string err_msg = 2; // 错误信息
string hint = 3; // 请求标记
string request_id = 4; // 请求id
// @json: -
bool autonomy = 5; // 框架自动化
}