feat: ddns 功能调用逻辑

This commit is contained in:
Mmx233
2022-12-08 16:30:29 +08:00
parent 7dc89fcf68
commit 2a386ff049
7 changed files with 100 additions and 0 deletions

6
dns/models/config.go Normal file
View File

@@ -0,0 +1,6 @@
package models
type BasicConfig struct {
Domain string `mapstructure:"domain"`
Other map[string]interface{} `mapstructure:",remain"`
}