@shadow-dev/core
Version:
A modular core framework for Discord bot development, providing commands, buttons, menus, middleware, and more.
17 lines (16 loc) • 673 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const commander_1 = require("commander");
const example_js_1 = __importDefault(require("./commands/example.js"));
const init_js_1 = __importDefault(require("./commands/init.js"));
const program = new commander_1.Command();
program.version("2.0.0").description("ShadowCore CLI");
// Define your commands here
// Example command
program.addCommand(example_js_1.default);
program.addCommand(init_js_1.default);
program.parse(process.argv);