feat: ddns 功能调用逻辑
This commit is contained in:
14
dns/aliyun/aliyun.go
Normal file
14
dns/aliyun/aliyun.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package aliyun
|
||||
|
||||
import (
|
||||
"github.com/Mmx233/BitSrunLoginGo/dns/models"
|
||||
"github.com/Mmx233/BitSrunLoginGo/dns/util"
|
||||
)
|
||||
|
||||
type DnsProvider struct {
|
||||
}
|
||||
|
||||
func New(conf map[string]interface{}) (models.DnsProvider, error) {
|
||||
var p DnsProvider
|
||||
return &p, util.DecodeConfig(conf, &p)
|
||||
}
|
||||
Reference in New Issue
Block a user