Files
VA-Log-Parser/index.js
2022-08-09 21:59:11 -05:00

13 lines
366 B
JavaScript
Executable File

#! /usr/bin/env node
import { program } from "commander";
import parseLogFile from "./commands/parseLogFile.js";
import startCLI from "./commands/startCLI.js";
program
.command("parseLogFile <Path>")
.description("Parse the Provided CCG Log File")
.action(parseLogFile);
program.description("Start the interactive Parser").action(startCLI);
program.parse();