mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-08-04 19:35:08 -04:00
15 lines
325 B
Go
15 lines
325 B
Go
package models
|
|
|
|
type (
|
|
// Provider is a possible DNS provider
|
|
Provider string
|
|
// IPMethod is a method to obtain your public IP address
|
|
IPMethod string
|
|
// Status is the record config status
|
|
Status string
|
|
// HTML is for constants HTML strings
|
|
HTML string
|
|
// IPVersion is ipv4 or ipv6
|
|
IPVersion string
|
|
)
|