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