summaryrefslogtreecommitdiff
path: root/packages/cli/src/services/CommandService.ts
diff options
context:
space:
mode:
authorharoldmciver-go <[email protected]>2025-07-14 12:22:37 -0400
committerGitHub <[email protected]>2025-07-14 16:22:37 +0000
commitc313c3dee1872a0edc943ad096eab68a03a3dda5 (patch)
tree2674ca3a913af495579f78ebd0e2c22009c7d0c9 /packages/cli/src/services/CommandService.ts
parent80c81f2a4cafd88333defa6b86b69f572dfec5d0 (diff)
updated '/auth' to use new slash command arch (#3797)
Co-authored-by: Abhi <[email protected]>
Diffstat (limited to 'packages/cli/src/services/CommandService.ts')
-rw-r--r--packages/cli/src/services/CommandService.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/services/CommandService.ts b/packages/cli/src/services/CommandService.ts
index 45b10618..97784e18 100644
--- a/packages/cli/src/services/CommandService.ts
+++ b/packages/cli/src/services/CommandService.ts
@@ -8,9 +8,11 @@ import { SlashCommand } from '../ui/commands/types.js';
import { memoryCommand } from '../ui/commands/memoryCommand.js';
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';
const loadBuiltInCommands = async (): Promise<SlashCommand[]> => [
+ authCommand,
clearCommand,
helpCommand,
memoryCommand,