Files
RandomMemerBot/helpers/setup-discord-client.ts
2023-10-21 05:09:38 +02:00

18 lines
658 B
TypeScript

import { Client, GatewayIntentBits } from "discord.js";
export function SetupDiscordCLient(): Client{
const discordClient = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildVoiceStates,
GatewayIntentBits.GuildIntegrations,
],
});
const discordApplicationToken = process.env.TOKEN; // Discord bot token from .env file (required) More info: https://discordgsm.com/guide/how-to-get-a-discord-bot-token
discordClient.login(discordApplicationToken);
return discordClient;
}