diff options
Diffstat (limited to 'packages/cli/src/services/CommandService.ts')
| -rw-r--r-- | packages/cli/src/services/CommandService.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/cli/src/services/CommandService.ts b/packages/cli/src/services/CommandService.ts index b9a8df1c..51fe2ad8 100644 --- a/packages/cli/src/services/CommandService.ts +++ b/packages/cli/src/services/CommandService.ts @@ -16,8 +16,9 @@ import { chatCommand } from '../ui/commands/chatCommand.js'; import { statsCommand } from '../ui/commands/statsCommand.js'; import { privacyCommand } from '../ui/commands/privacyCommand.js'; import { aboutCommand } from '../ui/commands/aboutCommand.js'; -import { compressCommand } from '../ui/commands/compressCommand.js'; import { extensionsCommand } from '../ui/commands/extensionsCommand.js'; +import { toolsCommand } from '../ui/commands/toolsCommand.js'; +import { compressCommand } from '../ui/commands/compressCommand.js'; const loadBuiltInCommands = async (): Promise<SlashCommand[]> => [ aboutCommand, @@ -33,6 +34,7 @@ const loadBuiltInCommands = async (): Promise<SlashCommand[]> => [ privacyCommand, statsCommand, themeCommand, + toolsCommand, ]; export class CommandService { |
