(Fix) Lint errors

This commit is contained in:
Quentin McGaw
2021-01-26 01:09:09 +00:00
parent b1ff95affa
commit bc83b75634
2 changed files with 4 additions and 3 deletions

View File

@@ -8,7 +8,8 @@ import (
"github.com/qdm12/gluetun/internal/constants"
)
func (c *configurator) Start(ctx context.Context) (stdoutLines, stderrLines chan string, waitError chan error, err error) {
func (c *configurator) Start(ctx context.Context) (
stdoutLines, stderrLines chan string, waitError chan error, err error) {
c.logger.Info("starting openvpn")
return c.commander.Start(ctx, "openvpn", "--config", string(constants.OpenVPNConf))
}