Migrate /privacy to new architecture (#4202)

This commit is contained in:
Abhi 2025-07-15 01:45:06 -04:00 committed by GitHub
parent 886faa2990
commit e584241141
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 71 additions and 11 deletions

View file

@ -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,
];