1
0
mirror of https://github.com/ManyakRus/crud_generator.git synced 2024-12-22 00:36:41 +02:00
crud_generator/vendor/github.com/iancoleman/strcase/acronyms.go
Nikitin Aleksandr a6ea64ee3e новый
2023-10-24 18:03:04 +03:00

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)
}