apps/bot/src/feats/index.ts (view raw)
1 2 3 4 5 6 7 |
import { bugCommands, bugComponents } from "./bugs";
import { miscCommands } from "./misc";
import { robloxUserCommand } from "./roblox";
import { ticketCommands, ticketComponents } from "./tickets";
export const commands = [...ticketCommands, ...miscCommands, ...bugCommands, robloxUserCommand];
export const components = [...ticketComponents, ...bugComponents];
|