mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-16 08:25:14 +02:00
10 lines
368 B
TypeScript
10 lines
368 B
TypeScript
|
|
#!/usr/bin/env node
|
||
|
|
|
||
|
|
import { installStartupProfileReporter, profileMark, profileSpan } from './startup-profile.js';
|
||
|
|
|
||
|
|
installStartupProfileReporter();
|
||
|
|
profileMark('bin:entry');
|
||
|
|
const { runKloCli } = await profileSpan('import ./cli-runtime.js', () => import('./cli-runtime.js'));
|
||
|
|
profileMark('bin:runKloCli');
|
||
|
|
process.exitCode = await runKloCli(process.argv.slice(2));
|