feat(cli): Add CLI support with command parsing and version display

This commit is contained in:
2025-03-01 19:19:28 +00:00
parent 761f9ca1b6
commit c4a082031e
7 changed files with 56 additions and 2 deletions

View File

@@ -1,2 +1,11 @@
export * from './classes.tspm.js';
export * from './classes.processmonitor.js';
import * as cli from './cli.js';
/**
* called to run as cli
*/
export const runCli = async () => {
await cli.run();
}