8 lines
109 B
TypeScript
8 lines
109 B
TypeScript
import * as cli from './tools.cli.js';
|
|
|
|
export const runCli = async () => {
|
|
await cli.run();
|
|
};
|
|
|
|
runCli();
|