chore(provider): rename all BuildConf to OpenVPNConfig

This commit is contained in:
Quentin McGaw
2022-05-27 22:04:14 +00:00
parent d9dfb81cb4
commit 991d75a1d0
24 changed files with 24 additions and 24 deletions

View File

@@ -38,7 +38,7 @@ import (
// Provider contains methods to read and modify the openvpn configuration to connect as a client.
type Provider interface {
GetConnection(selection settings.ServerSelection) (connection models.Connection, err error)
BuildConf(connection models.Connection, settings settings.OpenVPN) (lines []string)
OpenVPNConfig(connection models.Connection, settings settings.OpenVPN) (lines []string)
PortForwarder
}