(toolId: string)
| 28 | } |
| 29 | |
| 30 | export function isGoExecuted(toolId: string): boolean { |
| 31 | return getToolEntry(toolId)?.route === 'go' |
| 32 | } |
| 33 | |
| 34 | export function isClientExecuted(toolId: string): boolean { |
| 35 | return getToolEntry(toolId)?.route === 'client' |
nothing calls this directly
no test coverage detected