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

6 lines
112 B
Go
Raw Normal View History

2023-01-10 03:23:32 +00:00
package nameservers
type NameServer interface {
SetRecord(domain string, overrideIp string) (string, error)
}