7d78e65d0c
Add semantic versioning to all services * working * Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver * 1.24 mod * go upgrade * tool * Merge branch 'main' of bitbucket.org:aarete/query-orchestration into feature/semver
14 lines
253 B
Go
14 lines
253 B
Go
package strcase
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
var uppercaseAcronym = sync.Map{}
|
|
//"ID": "id",
|
|
|
|
// ConfigureAcronym allows you to add additional words which will be considered acronyms
|
|
func ConfigureAcronym(key, val string) {
|
|
uppercaseAcronym.Store(key, val)
|
|
}
|