1 2 3 4 5 6 7
package cmd import "strings" func normalizeKeyInput(key string) string { return strings.ToUpper(strings.TrimSpace(key)) }