Add linters and fix lint issues

This commit is contained in:
Quentin McGaw
2020-10-20 02:45:28 +00:00
parent f9bef8ecda
commit 9c73faaaeb
107 changed files with 739 additions and 422 deletions

View File

@@ -5,29 +5,29 @@ import (
)
const (
// PrivateInternetAccess is a VPN provider
// PrivateInternetAccess is a VPN provider.
PrivateInternetAccess models.VPNProvider = "private internet access"
// PrivateInternetAccessOld is the pre summer 2020 PIA provider
// PrivateInternetAccessOld is the pre summer 2020 PIA provider.
PrivateInternetAccessOld models.VPNProvider = "private internet access old"
// Mullvad is a VPN provider
// Mullvad is a VPN provider.
Mullvad models.VPNProvider = "mullvad"
// Windscribe is a VPN provider
// Windscribe is a VPN provider.
Windscribe models.VPNProvider = "windscribe"
// Surfshark is a VPN provider
// Surfshark is a VPN provider.
Surfshark models.VPNProvider = "surfshark"
// Cyberghost is a VPN provider
// Cyberghost is a VPN provider.
Cyberghost models.VPNProvider = "cyberghost"
// Vyprvpn is a VPN provider
// Vyprvpn is a VPN provider.
Vyprvpn models.VPNProvider = "vyprvpn"
// NordVPN is a VPN provider
// NordVPN is a VPN provider.
Nordvpn models.VPNProvider = "nordvpn"
// PureVPN is a VPN provider
// PureVPN is a VPN provider.
Purevpn models.VPNProvider = "purevpn"
)
const (
// TCP is a network protocol (reliable and slower than UDP)
// TCP is a network protocol (reliable and slower than UDP).
TCP models.NetworkProtocol = "tcp"
// UDP is a network protocol (unreliable and faster than TCP)
// UDP is a network protocol (unreliable and faster than TCP).
UDP models.NetworkProtocol = "udp"
)