2020-08-28 08:17:04 -04:00
|
|
|
package updater
|
|
|
|
|
|
|
|
|
|
type Options struct {
|
2020-09-05 12:57:16 -04:00
|
|
|
Cyberghost bool
|
|
|
|
|
Mullvad bool
|
|
|
|
|
Nordvpn bool
|
|
|
|
|
PIA bool
|
|
|
|
|
PIAold bool
|
|
|
|
|
Purevpn bool
|
|
|
|
|
Surfshark bool
|
|
|
|
|
Vyprvpn bool
|
|
|
|
|
Windscribe bool
|
|
|
|
|
File bool // update JSON file (user side)
|
|
|
|
|
Stdout bool // update constants file (maintainer side)
|
|
|
|
|
DNSAddress string
|
2020-08-28 08:17:04 -04:00
|
|
|
}
|