UNPKG

@shadow-dev/core

Version:

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

11 lines (8 loc) 236 B
import { Command } from "commander"; const exampleCommand = new Command("example") .description("An example command") .action(() => { console.log("This is an example command."); } ); export default exampleCommand;