remove extra spaces

This commit is contained in:
Carlosokumu 2024-09-25 09:29:26 +03:00
parent cc760e7698
commit 6dbd250694
Signed by: carlos
GPG Key ID: 7BD6BC8160A5C953

View File

@ -1,8 +1,5 @@
package utils package utils
var isoCodes = map[string]bool{ var isoCodes = map[string]bool{
"eng": true, // English "eng": true, // English
"swa": true, // Swahili "swa": true, // Swahili
@ -12,4 +9,3 @@ var isoCodes = map[string]bool{
func IsValidISO639(code string) bool { func IsValidISO639(code string) bool {
return isoCodes[code] return isoCodes[code]
} }