Minor code and comments changes

This commit is contained in:
Quentin McGaw
2020-05-29 00:09:49 +00:00
parent d0926111e0
commit 64e447b262
5 changed files with 73 additions and 73 deletions

View File

@@ -8,7 +8,7 @@ import (
"github.com/qdm12/private-internet-access-docker/internal/models"
)
// Configurator contains methods to download, read and modify the openvpn configuration to connect as a client
// Configurator contains methods to read and modify the openvpn configuration to connect as a client
type Configurator interface {
GetOpenVPNConnections(country models.MullvadCountry, city models.MullvadCity, provider models.MullvadProvider, protocol models.NetworkProtocol, customPort uint16, targetIP net.IP) (connections []models.OpenVPNConnection, err error)
BuildConf(connections []models.OpenVPNConnection, verbosity, uid, gid int, root bool, cipher string) (err error)