mirror of
https://git.bits.team/Bits/mod-manager.git
synced 2025-04-04 06:58:36 -04:00
13 lines
414 B
TypeScript
13 lines
414 B
TypeScript
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(async () => {
|
|
await Initialiser.initialise();
|
|
});
|
|
}
|
|
} |