10 lines
189 B
TypeScript
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();
|