Files
nullptr/index.js
2018-10-16 19:12:36 +01:00

22 lines
501 B
JavaScript

const Logger = require('./logger');
const Config = require('./config');
// const Discord = require('discord.js');
// const client = new Discord.Client();
Logger.init();
Logger.SetLevel(Logger.VERBOSE_LOGS);
let config = new Config('./config/config.json');
config.load();
// client.on('ready', () => {
// console.log(`Logged in as ${client.user.tag}!`);
// });
// client.on('message', msg => {
// if (msg.content === 'ping') {
// msg.reply('Pong!');
// }
// });
// client.login('token');