mirror of
https://git.bits.team/Bits/mod-manager.git
synced 2025-07-12 05:59:43 -04:00
Added uninstall command
This commit is contained in:
@ -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() {
|
||||
|
Reference in New Issue
Block a user