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

8 lines
151 B
Go
Raw Normal View History

2023-01-10 03:23:32 +00:00
package nameservers
2023-01-11 23:38:19 +00:00
import "context"
2023-01-10 03:23:32 +00:00
type NameServer interface {
2023-01-11 23:38:19 +00:00
SetRecord(ctx context.Context, domain string, overrideIp string) (string, error)
2023-01-10 03:23:32 +00:00
}