diff options
| author | Harold Mciver <[email protected]> | 2025-07-15 16:10:04 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-15 20:10:04 +0000 |
| commit | 03b3917f62e5db2b00bcb27df9d78ee5289d9a85 (patch) | |
| tree | dc6007c213bbdef4a39f1627d7c3d59a3bf44a23 /packages/cli/src/services/CommandService.ts | |
| parent | 8d9dc44b71c71dc7800f1dedcc5f88ec1ab654fa (diff) | |
updated `/stats` to use new slash command arch (#4146)
Diffstat (limited to 'packages/cli/src/services/CommandService.ts')
| -rw-r--r-- | packages/cli/src/services/CommandService.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/services/CommandService.ts b/packages/cli/src/services/CommandService.ts index ef31952d..cc7b4e62 100644 --- a/packages/cli/src/services/CommandService.ts +++ b/packages/cli/src/services/CommandService.ts @@ -10,6 +10,7 @@ import { helpCommand } from '../ui/commands/helpCommand.js'; import { clearCommand } from '../ui/commands/clearCommand.js'; import { authCommand } from '../ui/commands/authCommand.js'; import { themeCommand } from '../ui/commands/themeCommand.js'; +import { statsCommand } from '../ui/commands/statsCommand.js'; import { privacyCommand } from '../ui/commands/privacyCommand.js'; import { aboutCommand } from '../ui/commands/aboutCommand.js'; @@ -20,6 +21,7 @@ const loadBuiltInCommands = async (): Promise<SlashCommand[]> => [ helpCommand, memoryCommand, privacyCommand, + statsCommand, themeCommand, ]; |
