7 lines
284 B
JavaScript
7 lines
284 B
JavaScript
const DayzArmbands = require('./structures/DayzArmbands');
|
|
const config = require('./config/config');
|
|
const { GatewayIntentBits } = require('discord.js');
|
|
|
|
let client = new DayzArmbands({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages] }, config);
|
|
client.build()
|