package provider import "context" // Provider defines the interface for updating DNS records. type Provider interface { UpdateRecord(ctx context.Context, domain, ip string) error }