mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 15:00:27 +08:00
16 lines
250 B
Protocol Buffer
16 lines
250 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "model_node_cluster.proto";
|
|
import "model_node_login.proto";
|
|
|
|
message Node {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
string status = 3;
|
|
|
|
NodeCluster cluster = 32;
|
|
NodeLogin login = 33;
|
|
} |