mirror of
https://github.com/LukeHagar/VA-Log-Parser.git
synced 2025-12-06 04:21:55 +00:00
10 lines
235 B
JavaScript
Executable File
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();
|