summaryrefslogtreecommitdiff
path: root/packages/cli/src/services/CommandService.ts
diff options
context:
space:
mode:
authorAbhi <[email protected]>2025-07-15 01:45:06 -0400
committerGitHub <[email protected]>2025-07-15 05:45:06 +0000
commite584241141b74ab503a527fad158d60eb06c38fe (patch)
tree2ccad5691af39e3f3782a976d6f498f2069bafb0 /packages/cli/src/services/CommandService.ts
parent886faa2990b191a0dbd01dc58a88e09e342886b5 (diff)
Migrate /privacy to new architecture (#4202)
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 97784e18..0e2a8acb 100644
--- a/packages/cli/src/services/CommandService.ts
+++ b/packages/cli/src/services/CommandService.ts
@@ -10,12 +10,14 @@ 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 { privacyCommand } from '../ui/commands/privacyCommand.js';
const loadBuiltInCommands = async (): Promise<SlashCommand[]> => [
authCommand,
clearCommand,
helpCommand,
memoryCommand,
+ privacyCommand,
themeCommand,
];