This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require('dotenv').config(); | |
const { Client, GatewayIntentBits } = require('discord.js'); | |
const GUILD_ID = "GUILD_ID"; | |
const BAN_REASON = "Automated unban!"; | |
const DISCORD_TOKEN = process.env.DISCORD_TOKEN; | |
const client = new Client({ | |
intents: [GatewayIntentBits.GuildBans, GatewayIntentBits.Guilds], | |
}); |