(jsonName: string, required: boolean, goType: string)
| 392 | } |
| 393 | |
| 394 | function goJSONTag(jsonName: string, required: boolean, goType: string): string { |
| 395 | return `json:"${jsonName}${goJSONOmitSuffix(required, goType)}"`; |
| 396 | } |
| 397 | |
| 398 | async function formatGoFile(filePath: string): Promise<void> { |
| 399 | try { |
no test coverage detected
searching dependent graphs…