mirror of
https://github.com/qdm12/ddns-updater.git
synced 2026-07-24 06:33:40 -04:00
10 lines
147 B
Go
10 lines
147 B
Go
package models
|
|
|
|
// IPMethod is a method to obtain your public IP address.
|
|
type IPMethod struct {
|
|
Name string
|
|
URL string
|
|
IPv4 bool
|
|
IPv6 bool
|
|
}
|