From c3cb0ca317a52a740bf9625ca9df43f5c2306548 Mon Sep 17 00:00:00 2001 From: Leo Goetz Date: Fri, 8 May 2026 15:48:37 +0200 Subject: inital commit --- src/index.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/index.ts (limited to 'src/index.ts') 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); -- cgit v1.3.1