Add special cases for 'jwt' and 'crud'

This commit is contained in:
Elara 2023-01-07 14:42:57 -08:00
parent 8e0208dec2
commit 862bcd5164
1 changed files with 4 additions and 0 deletions

View File

@ -242,6 +242,10 @@ func TransformNameGo(s string) string {
out += "URL"
case "nsfw":
out += "NSFW"
case "jwt":
out += "JWT"
case "crud":
out += "CRUD"
default:
if len(segment) == 0 {
continue