This repository has been archived on 2024-04-02. You can view files and clone it, but cannot push or open issues or pull requests.
ddnser/nameservers/nameserver.go
2023-01-11 20:38:19 -03:00

8 lines
151 B
Go

package nameservers
import "context"
type NameServer interface {
SetRecord(ctx context.Context, domain string, overrideIp string) (string, error)
}