实现域名服务器集群管理

This commit is contained in:
刘祥超
2021-05-25 15:48:25 +08:00
parent 71a27a89d6
commit 081dff9c61
4 changed files with 1440 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 域名服务集群
message NSCluster {
int64 id = 1;
bool isOn = 2;
string name = 3;
}