Files
VA-Log-Parser/index.js
luke-hagar-sp 59f952bc8e Initial commit
2022-08-09 16:03:23 -05:00

10 lines
235 B
JavaScript
Executable File

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