mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-04 11:25:09 -04:00
- Only calls DNS API(s) once the public IP address changes - Only one ip method per ip version (ipv4, ipv6, ipv4/v6) - Gets the ip address once every period for all records - More object oriented coding instead of functional - Support to update ipv4 and ipv6 records separately, for supported DNS providers
13 lines
236 B
Go
13 lines
236 B
Go
package models
|
|
|
|
type (
|
|
// Provider is a possible DNS provider
|
|
Provider string
|
|
// Status is the record config status
|
|
Status string
|
|
// HTML is for constants HTML strings
|
|
HTML string
|
|
// IPVersion is ipv4 or ipv6
|
|
IPVersion string
|
|
)
|