Files
BitSrunLoginGo/dns/aliyun/aliyun.go
2022-12-08 16:30:29 +08:00

15 lines
278 B
Go

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)
}