14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
import * as plugins from './tools.plugins.js';
|
|
|
|
export const run = async () => {
|
|
const toolsCli = new plugins.smartcli.Smartcli();
|
|
|
|
toolsCli.standardCommand().subscribe(async (argvArg) => {
|
|
console.log('@git.zone/tools - CLI placeholder');
|
|
console.log('No commands implemented yet.');
|
|
});
|
|
|
|
toolsCli.addVersion('2.0.22');
|
|
toolsCli.startParse();
|
|
};
|