Code maintenance: lint bug fix for armv7

This commit is contained in:
Quentin McGaw
2020-12-29 18:16:29 +00:00
parent fe81eb65c2
commit 95ba3261fd

View File

@@ -8,11 +8,11 @@ import (
) )
// HTTPProxy contains settings to configure the HTTP proxy. // HTTPProxy contains settings to configure the HTTP proxy.
type HTTPProxy struct { //nolint:maligned type HTTPProxy struct {
Enabled bool
Port uint16
User string User string
Password string Password string
Port uint16
Enabled bool
Stealth bool Stealth bool
Log bool Log bool
} }