实现集群看板

This commit is contained in:
刘祥超
2021-07-05 11:37:10 +08:00
parent 53ee50fa38
commit be9bde507a
11 changed files with 2357 additions and 138 deletions

View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 统计看板
message ServerStatBoard {
int64 id = 1;
string name = 2;
bool isOn = 3;
}