diff options
| author | Leo Goetz <dev@leogtz.de> | 2026-05-08 15:48:37 +0200 |
|---|---|---|
| committer | Leo Goetz <dev@leogtz.de> | 2026-05-08 15:48:37 +0200 |
| commit | c3cb0ca317a52a740bf9625ca9df43f5c2306548 (patch) | |
| tree | aa8877dc2d651f16d23a629c4054043cae8be156 /src/index.ts | |
inital commit
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..3a6b348 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,11 @@ +#!/usr/bin/env node +import { Command } from "commander"; +import { check } from "./commands/check.js"; +import { config } from "./commands/config.js"; + +const program = new Command(); + +check(program); +config(program); + +program.parse(process.argv); |
