Add list command

This commit is contained in:
Kallum Jones
2022-08-03 20:42:51 +01:00
parent b9c2f22de3
commit 66f4c2b289
6 changed files with 128 additions and 1 deletions

View File

@ -7,6 +7,7 @@ import Initialiser from "./util/initialiser.js";
import PrintUtils from "./util/print_utils.js";
import path from "path";
import {Logger, pino} from "pino"
import {ListCommand} from "./commands/list_command.js";
export default class ModManager {
@ -17,7 +18,8 @@ export default class ModManager {
private static subcommands: Array<Subcommand> = [
new InitCommand(),
new InstallCommand()
new InstallCommand(),
new ListCommand()
];
static init() {