(dir: string, options: unknown)
| 66 | } |
| 67 | |
| 68 | export async function initCommand(dir: string, options: unknown) { |
| 69 | return await wrapCommandAction("initCommand", InitCommandOptions, options, async (opts) => { |
| 70 | return await _initCommand(dir, opts); |
| 71 | }); |
| 72 | } |
| 73 | |
| 74 | async function _initCommand(dir: string, options: InitCommandOptions) { |
| 75 | const span = trace.getSpan(context.active()); |
no test coverage detected
searching dependent graphs…