(filePath: string)
| 396 | } |
| 397 | |
| 398 | async function formatGoFile(filePath: string): Promise<void> { |
| 399 | try { |
| 400 | await execFileAsync("go", ["fmt", filePath]); |
| 401 | console.log(` ✓ Formatted with go fmt`); |
| 402 | } catch { |
| 403 | // go fmt not available, skip |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | function collectRpcMethods(node: Record<string, unknown>): RpcMethod[] { |
| 408 | const results: RpcMethod[] = []; |
no test coverage detected
searching dependent graphs…