(projectPath: string)
| 20 | }; |
| 21 | |
| 22 | const infoAction = async (projectPath: string): Promise<void> => { |
| 23 | await telemetry.trackCommand('info', () => actions.info(projectPath)); |
| 24 | }; |
| 25 | |
| 26 | const initAction = async (projectPath: string): Promise<void> => { |
| 27 | await telemetry.trackCommand('init', () => actions.init(projectPath)); |
nothing calls this directly
no test coverage detected