mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-07 20:15:31 -05:00
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
|
|
}
|