UNPKG

@shadow-dev/core

Version:

A modular core framework for Discord bot development, providing commands, buttons, menus, middleware, and more.

10 lines (9 loc) 322 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const commander_1 = require("commander"); const exampleCommand = new commander_1.Command("example") .description("An example command") .action(() => { console.log("This is an example command."); }); exports.default = exampleCommand;