Initial commit

This commit is contained in:
media
2025-04-30 18:57:23 +08:00
commit 3f3f08cc4e
22 changed files with 6737 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 };