Added Mullvad server model

This commit is contained in:
Quentin McGaw (desktop)
2020-02-16 17:33:52 +00:00
parent ded635bd56
commit 5c69ddc05f
2 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package models
import "net"
type MullvadServer struct {
Country MullvadCountry
City MullvadCity
Provider MullvadProvider
Owned bool
IPs []net.IP
DefaultPort uint16
}