Added /exportmemory to... export your chats

This commit is contained in:
OptimiDev
2025-10-20 16:20:48 +02:00
parent 6da0c603ed
commit 40d92cd430
12 changed files with 594 additions and 39 deletions

View File

@@ -9,6 +9,7 @@ import * as profile from './commands/profile.js';
import * as resetmemory from './commands/resetmemory.js';
import { banExecute, kickExecute, timeoutExecute } from './commands/moderation.js';
import { startQotdScheduler } from './scheduler/qotd.js';
import * as exportmemory from './commands/exportmemory.js';
requireEnv('discordToken');
@@ -29,6 +30,7 @@ commands.set('resetmemory', resetmemory.execute);
commands.set('ban', banExecute);
commands.set('kick', kickExecute);
commands.set('timeout', timeoutExecute);
commands.set('exportmemory', exportmemory.execute);
client.once(Events.ClientReady, async (c) => {
await migrate();