Initial commit

This commit is contained in:
kevisual
2025-04-16 18:09:31 +08:00
commit bd789de7b6
20 changed files with 6702 additions and 0 deletions

12
cmd/index.ts Normal file
View File

@@ -0,0 +1,12 @@
import { program } from './program.ts';
import { Command } from 'commander';
program.version('1.0.0');
program.addCommand(
new Command('test').action(() => {
console.log('test');
}),
);
program.parse(process.argv);

3
cmd/program.ts Normal file
View File

@@ -0,0 +1,3 @@
import { program } from 'commander';
export { program };