summaryrefslogtreecommitdiff
path: root/src/index.ts
blob: 3a6b3486ef4e5ff4fb7df752127807cdc9a284c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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);