(s: string)
| 105 | } |
| 106 | |
| 107 | function toGoSchemaTypeName(s: string): string { |
| 108 | return toPascalCase(splitGoIdentifierWords(s).join("_")); |
| 109 | } |
| 110 | |
| 111 | function toGoFieldName(jsonName: string): string { |
| 112 | // Handle camelCase field names like "modelId" -> "ModelID" |
no test coverage detected
searching dependent graphs…