7 lines
259 B
JavaScript
7 lines
259 B
JavaScript
const colors = require('colors');
|
|
|
|
module.exports = async (interaction, db) => {
|
|
if (interaction.commandName !== 'ban') return;
|
|
|
|
await interaction.reply({content: "Not Implimented Yet. (Try just banning people on your guild lol)", ephemeral: true});
|
|
} |