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.
 
 
Natsuki/bot.js

17 lines
518 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"];
}
init();