Added uninstall command

This commit is contained in:
Kallum Jones
2022-08-04 14:24:39 +01:00
parent 129d7e7ad5
commit ab83374735
4 changed files with 69 additions and 10 deletions

View File

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