emum.go 140 B

123456789101112131415
  1. package ddns
  2. const (
  3. GOGADDY = iota
  4. GOOGLE
  5. )
  6. const (
  7. A = "A"
  8. AAAA = "AAAA"
  9. )
  10. const (
  11. GODADDYAPIURL = "https://api.godaddy.com"
  12. )