9 lines
227 B
Go
9 lines
227 B
Go
package constants
|
|
|
|
const (
|
|
// OpenVPNAuthConf is the file path to the OpenVPN auth file.
|
|
OpenVPNAuthConf = "/etc/openvpn/auth.conf"
|
|
// ServersData is the server information filepath.
|
|
ServersData = "/gluetun/servers.json"
|
|
)
|