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.
type HTTPProxy struct { //nolint:maligned
Enabled bool
Port uint16
type HTTPProxy struct {
User string
Password string
Port uint16
Enabled bool
Stealth bool
Log bool
}