(command: () => Promise<void>)
| 22 | }; |
| 23 | |
| 24 | const runAsyncCliCommand = async (command: () => Promise<void>) => { |
| 25 | const goCommand = await go(command); |
| 26 | handleCliCommand(goCommand); |
| 27 | }; |
| 28 | |
| 29 | const runCliCommand = (command: () => void) => { |
| 30 | const goCommand = goSync(command); |
no test coverage detected