all repos — stealth-developers @ 124009fe8d16aefd3401cb00740df5e6d26d6a44

apps/bot/src/feats/index.ts (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
import { bugCommands, bugComponents } from "./bugs";
import { syncCommand } from "./link";
import { miscCommands } from "./misc";
import { robloxCommands } from "./roblox";
import { ticketCommands, ticketComponents } from "./tickets";

export const commands = [
	...ticketCommands,
	...miscCommands,
	...bugCommands,
	...robloxCommands,
	syncCommand,
];
export const components = [...ticketComponents, ...bugComponents];