Ran a reformat

This commit is contained in:
Kallum Jones
2022-08-03 16:55:12 +01:00
parent 4a16f8c69d
commit 6b700d465b
8 changed files with 65 additions and 65 deletions

View File

@ -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();
});
}
}

View File

@ -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";

View File

@ -1,4 +1,4 @@
import { Command } from "commander";
import {Command} from "commander";
export default interface Subcommand {
registerCommand(program: Command): void;