mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-09 08:40:25 +08:00
13 lines
200 B
Protocol Buffer
13 lines
200 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
message NodeLog {
|
|
string role = 1;
|
|
string tag = 2;
|
|
string description = 3;
|
|
string level = 4;
|
|
int64 nodeId = 5;
|
|
int64 createdAt = 6;
|
|
} |