ddnsclient/pkg/providers/main.go

7 lines
140 B
Go

package providers
// Provider is the default interface for all providers
type Provider interface {
UpdateIP(subdomain, ip string) error
}