Files
tools/ts/index.ts
2026-02-03 16:59:32 +00:00

10 lines
189 B
TypeScript

import * as plugins from './tools.plugins.js';
import * as cli from './tools.cli.js';
export const runCli = async () => {
await cli.run();
};
// Auto-run when called directly
runCli();