import { bugCommands, bugComponents } from "./bugs"; import { syncCommand } from "./link"; import { miscCommands } from "./misc"; import { proxyCommands } from "./proxy"; import { robloxCommands } from "./roblox"; import { ticketCommands, ticketComponents } from "./tickets"; export const commands = [ ...ticketCommands, ...miscCommands, ...bugCommands, ...robloxCommands, ...proxyCommands, syncCommand, ]; export const components = [...ticketComponents, ...bugComponents];