实现基本的域名、记录管理

This commit is contained in:
GoEdgeLab
2021-05-27 17:08:57 +08:00
parent e9162bddd8
commit 25ffc98eec
15 changed files with 3423 additions and 177 deletions

View File

@@ -0,0 +1,11 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
// 线路
message NSRoute {
int64 id = 1;
bool isOn = 2;
string name = 3;
}