Added functionality to mark mods as essential

This commit is contained in:
Kallum Jones
2022-08-04 16:04:21 +01:00
parent ab83374735
commit e913bafb1e
11 changed files with 106 additions and 29 deletions

View File

@ -9,6 +9,7 @@ import path from "path";
import {Logger, pino} from "pino"
import {ListCommand} from "./commands/list_command.js";
import UninstallCommand from "./commands/uninstall_command.js";
import EssentialCommand from "./commands/essential_command.js";
export default class ModManager {
@ -21,7 +22,8 @@ export default class ModManager {
new InitCommand(),
new InstallCommand(),
new ListCommand(),
new UninstallCommand()
new UninstallCommand(),
new EssentialCommand()
];
static init() {