实现DNS域名验证

This commit is contained in:
刘祥超
2022-09-10 16:13:26 +08:00
parent 6ed4e2315f
commit 98ad80e1cb
10 changed files with 4768 additions and 3833 deletions

View File

@@ -0,0 +1,13 @@
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
package dnsconfigs
func DefaultNSUserConfig() *NSUserConfig {
return &NSUserConfig{
DefaultClusterId: 0,
}
}
type NSUserConfig struct {
DefaultClusterId int64 `json:"defaultClusterId"` // 默认部署到的集群
}