mirror of
https://git.bits.team/Bits/mod-manager.git
synced 2025-07-11 21:49:43 -04:00
Ran a reformat
This commit is contained in:
@ -1,13 +1,13 @@
|
||||
import { Command } from "commander";
|
||||
import {Command} from "commander";
|
||||
import Initialiser from "../util/initialiser.js";
|
||||
import Subcommand from "./subcommand.js";
|
||||
|
||||
export default class InitCommand implements Subcommand {
|
||||
registerCommand(program: Command) {
|
||||
program.command("init")
|
||||
.description("Initialises mod manager")
|
||||
.action(() => {
|
||||
Initialiser.initialise();
|
||||
});
|
||||
.description("Initialises mod manager")
|
||||
.action(() => {
|
||||
Initialiser.initialise();
|
||||
});
|
||||
}
|
||||
}
|
@ -1,4 +1,4 @@
|
||||
import { Command } from "commander";
|
||||
import {Command} from "commander";
|
||||
import Subcommand from "./subcommand.js"
|
||||
import ModManager from "../mod-manager.js";
|
||||
import Mods from "../mods/mods.js";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Command } from "commander";
|
||||
import {Command} from "commander";
|
||||
|
||||
export default interface Subcommand {
|
||||
registerCommand(program: Command): void;
|
||||
|
Reference in New Issue
Block a user