mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
13 lines
165 B
Protocol Buffer
13 lines
165 B
Protocol Buffer
syntax = "proto3";
|
|
option go_package = "./pb";
|
|
|
|
package pb;
|
|
|
|
import "model_cluster.proto";
|
|
|
|
message Node {
|
|
int64 id = 1;
|
|
string name = 2;
|
|
|
|
Cluster cluster = 32;
|
|
} |