change quick.db to sqlite3

This commit is contained in:
VALOU3336
2024-02-25 21:25:18 +01:00
parent 15d2ea19c1
commit 667ac32ca1
48 changed files with 1433 additions and 2687 deletions
@@ -0,0 +1,11 @@
const { Events, InteractionType } = require("discord.js");
module.exports = {
name: Events.InteractionCreate,
async execute(client, interaction) {
if (interaction.type === InteractionType.ApplicationCommand) {
const command = client.commands.get(interaction.commandName);
await command.execute(interaction, client);
}
},
};