Files
gluetun/internal/models/mullvad.go
Quentin McGaw 768147095f Golangcilint in build pipeline and fix lint errors
- Fix bad permissions bits for files
- VPNSP is 'private internet access' instead of 'pia' (retro compatible)
- Check errors of deferred unsetEnv functions in params package
-  Other lint errors fixing and code simplifications
2020-04-12 20:05:28 +00:00

13 lines
202 B
Go

package models
import "net"
type MullvadServer struct {
IPs []net.IP
Country MullvadCountry
City MullvadCity
Provider MullvadProvider
Owned bool
DefaultPort uint16
}