solving linting issues

dev
mzack 2021-11-18 21:54:24 +01:00
parent b42f0d32ea
commit bdffa373cf
1 changed files with 2 additions and 7 deletions

View File

@ -2,7 +2,6 @@ package http
import (
"encoding/json"
"strings"
"github.com/alecthomas/jsonschema"
"github.com/pkg/errors"
@ -14,7 +13,7 @@ type SignatureType int
// Supported values for the SignatureType
const (
AWSSignature SignatureType = iota + 1
limit
signatureLimit
)
// signatureTypeMappings is a table for conversion of signature type from string.
@ -24,7 +23,7 @@ var signatureTypeMappings = map[SignatureType]string{
func GetSupportedSignaturesTypes() []SignatureType {
var result []SignatureType
for index := SignatureType(1); index < limit; index++ {
for index := SignatureType(1); index < signatureLimit; index++ {
result = append(result, index)
}
return result
@ -40,10 +39,6 @@ func toSignatureType(valueToMap string) (SignatureType, error) {
return -1, errors.New("invalid signature type: " + valueToMap)
}
func normalizeValue(value string) string {
return strings.TrimSpace(strings.ToLower(value))
}
func (t SignatureType) String() string {
return signatureTypeMappings[t]
}