1
0
Fork 0
mirror of https://gitlab.com/pnx-tools/dns-updater.git synced 2026-06-16 05:54:56 +02:00
dns-updater/provider/interface.go

11 lines
192 B
Go

package provider
import (
"net"
)
type Provider interface {
Update(domain string, record string, ip net.IP) error
}
type ProviderFactory func(map[string]any) (Provider, error)