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