实现节点分组管理

This commit is contained in:
GoEdgeLab
2020-10-28 18:21:26 +08:00
parent 8ab4cf2b75
commit 08a85417fc
6 changed files with 1787 additions and 374 deletions

View File

@@ -0,0 +1,9 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message NodeGroup {
int64 id = 1;
string name = 2;
}