You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
678 B
19 lines
678 B
const Discord = require('discord.js');
|
|
const client = new Discord.Client();
|
|
//const config = require('./config.js');
|
|
const auth = require('./auth.json');
|
|
|
|
//client.config = config;
|
|
|
|
async function init() {
|
|
await client.login(auth.token);
|
|
client.config = auth;
|
|
|
|
['commands', 'aliases'].forEach(x => client[x] = new Discord.Collection());
|
|
['command', 'event'].forEach(x => require(`./handle/${x}`)(client));
|
|
|
|
client.developers = ["330547934951112705", "673477059904929802"];
|
|
client.utils = {};
|
|
client.utils.logch = async () => {return client.guilds.cache.get('762707532417335296').channels.cache.get('762732961753595915');};
|
|
}
|
|
init(); |