From b23be2ca466952f155561491ecea6c170895d680 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 12:25:56 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/index.ts diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..d86cbb1 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,6 @@ +import { run } from './cli.js'; + +run().catch((error) => { + console.error('Fatal error:', error); + process.exit(1); +});