diff options
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts index 3a6b348..0f81fdb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,10 +2,12 @@ import { Command } from "commander"; import { check } from "./commands/check.js"; import { config } from "./commands/config.js"; +import { fix } from "./commands/fix.js"; const program = new Command(); check(program); +fix(program); config(program); program.parse(process.argv); |
