11 lines
236 B
Go
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
|
|
}
|