Initial QSfera import
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
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)
|
||||
}
|
||||
Reference in New Issue
Block a user