您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

11 行
236 B

  1. package strcase
  2. var uppercaseAcronym = map[string]string{
  3. "ID": "id",
  4. }
  5. // ConfigureAcronym allows you to add additional words which will be considered acronyms
  6. func ConfigureAcronym(key, val string) {
  7. uppercaseAcronym[key] = val
  8. }