loader add

This commit is contained in:
VALOU3336
2024-02-13 21:45:11 +01:00
parent a0a674fcad
commit 804de4d5f0
6 changed files with 80 additions and 8 deletions
-8
View File
@@ -7,12 +7,4 @@ client.on('ready', () => {
console.log(`Logged in as ${client.user.tag}!`);
});
client.on('interactionCreate', async interaction => {
if (!interaction.isChatInputCommand()) return;
if (interaction.commandName === 'ping') {
await interaction.reply('Pong!');
}
});
client.login(process.env.TOKEN);