Files
opencloud/vendor/github.com/iancoleman/strcase/acronyms.go
T
2023-04-19 20:24:34 +02:00

11 lines
236 B
Go

package strcase
var uppercaseAcronym = map[string]string{
"ID": "id",
}
// ConfigureAcronym allows you to add additional words which will be considered acronyms
func ConfigureAcronym(key, val string) {
uppercaseAcronym[key] = val
}