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