Files
ddns-updater/internal/models/ipmethod.go
2020-10-25 16:47:27 +00:00

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
}