Files
dayz-reforger/index.js
T
2023-09-02 15:26:09 -07:00

7 lines
298 B
JavaScript

const DayzR = require('./structures/DayzRBot');
const config = require('./config/config');
const { GatewayIntentBits } = require('discord.js');
let client = new DayzR({ intents: [GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.GuildMembers] }, config);
client.build()