15 lines
140 B
Go
15 lines
140 B
Go
package ddns
|
|
|
|
const (
|
|
GOGADDY = iota
|
|
GOOGLE
|
|
)
|
|
|
|
const (
|
|
A = "A"
|
|
AAAA = "AAAA"
|
|
)
|
|
|
|
const (
|
|
GODADDYAPIURL = "https://api.godaddy.com"
|
|
)
|