12 lines
167 B
Protocol Buffer
12 lines
167 B
Protocol Buffer
// Copyright (c) 2023, AgiBot Inc.
|
|
// All rights reserved.
|
|
|
|
syntax = "proto3";
|
|
|
|
package aimrt.protocols.common;
|
|
|
|
message Error {
|
|
int64 code = 1;
|
|
string msg = 2;
|
|
}
|