阶段性提交

This commit is contained in:
刘祥超
2020-07-24 09:17:48 +08:00
parent 23cca702b4
commit 943742b836
53 changed files with 2962 additions and 1696 deletions

View File

@@ -0,0 +1,13 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
import "model_cluster.proto";
message Node {
int64 id = 1;
string name = 2;
Cluster cluster = 32;
}