mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
28 lines
767 B
Go
28 lines
767 B
Go
//go:build libdns_acmedns || libdns_all
|
|
// +build libdns_acmedns libdns_all
|
|
|
|
package libdns
|
|
|
|
import (
|
|
"github.com/foxcpp/maddy/framework/config"
|
|
"github.com/foxcpp/maddy/framework/module"
|
|
"github.com/libdns/acmedns"
|
|
)
|
|
|
|
func init() {
|
|
module.Register("libdns.acmedns", func(modName, instName string, _, _ []string) (module.Module, error) {
|
|
p := acmedns.Provider{}
|
|
return &ProviderModule{
|
|
RecordDeleter: &p,
|
|
RecordAppender: &p,
|
|
setConfig: func(c *config.Map) {
|
|
c.String("username", false, true, "", &p.Username)
|
|
c.String("password", false, true, "", &p.Password)
|
|
c.String("subdomain", false, true, "", &p.Subdomain)
|
|
c.String("server_url", false, true, "", &p.ServerURL)
|
|
},
|
|
instName: instName,
|
|
modName: modName,
|
|
}, nil
|
|
})
|
|
}
|