bansync/interactions/commands/ban.js
2026-01-17 16:05:33 -07:00

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});
}