thaldrin/index.js

11 lines
280 B
JavaScript
Raw Normal View History

2019-10-14 11:19:41 +00:00
const Client = require("./src/index");
const config = require("./config");
const { log } = require("./utils/index");
2019-10-09 16:19:30 +00:00
2019-10-14 11:19:41 +00:00
const { util } = require("discord.js");
2019-10-09 16:19:30 +00:00
2019-10-14 11:19:41 +00:00
util.fetchRecommendedShards(config.token).then(async count => {
await log.starting();
new Client(config, count);
});