From fa7111fd58e9a0c508ca2d527dff55b798575855 Mon Sep 17 00:00:00 2001 From: Tolfx Date: Wed, 18 Jan 2023 11:07:25 +0100 Subject: [PATCH] feat: updated index information exporter (#1475) --- src/classes/Commands/commands/information/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/classes/Commands/commands/information/index.ts b/src/classes/Commands/commands/information/index.ts index 25d9f5c55..526d72e41 100644 --- a/src/classes/Commands/commands/information/index.ts +++ b/src/classes/Commands/commands/information/index.ts @@ -1,6 +1,8 @@ import HelpCommand from './Help'; +import LinkCommands from './Links'; +import MiscCommands from './Miscs'; import PriceCommand from './Price'; import QueueCommand from './Queue'; import How2TradeCommand from './how2trade'; -export default [HelpCommand, How2TradeCommand, PriceCommand, QueueCommand]; +export default [HelpCommand, How2TradeCommand, PriceCommand, QueueCommand, MiscCommands, LinkCommands];