增加DNS服务商账号管理

This commit is contained in:
GoEdgeLab
2020-11-11 21:32:11 +08:00
parent 1011af4510
commit 6d7d87aa11
15 changed files with 2651 additions and 320 deletions

View File

@@ -0,0 +1,14 @@
syntax = "proto3";
option go_package = "./pb";
package pb;
message DNSProvider {
int64 id = 1;
string name = 2;
string type = 3;
string typeName = 4;
bytes apiParamsJSON = 5;
bytes routesJSON = 6;
int64 dataUpdatedAt = 7;
}