mirror of
https://github.com/jeessy2/ddns-go.git
synced 2025-10-20 15:33:46 +08:00
9 lines
133 B
Go
9 lines
133 B
Go
package dns
|
|
|
|
import "ddns-go/config"
|
|
|
|
// DNS interface
|
|
type DNS interface {
|
|
AddRecord(conf *config.Config) (ipv4 bool, ipv6 bool)
|
|
}
|