all repos — stealth-developers @ 75b66fcf8b9ad08232ff7ff06900b935bd707ced

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

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
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];