package constants const ( // PrivateInternetAccess is a VPN provider. PrivateInternetAccess = "private internet access" // Mullvad is a VPN provider. Mullvad = "mullvad" // Windscribe is a VPN provider. Windscribe = "windscribe" // Surfshark is a VPN provider. Surfshark = "surfshark" // Cyberghost is a VPN provider. Cyberghost = "cyberghost" // Vyprvpn is a VPN provider. Vyprvpn = "vyprvpn" // NordVPN is a VPN provider. Nordvpn = "nordvpn" // PureVPN is a VPN provider. Purevpn = "purevpn" // Privado is a VPN provider. Privado = "privado" // Torguard is a VPN provider. Torguard = "torguard" ) const ( // TCP is a network protocol (reliable and slower than UDP). TCP string = "tcp" // UDP is a network protocol (unreliable and faster than TCP). UDP string = "udp" )