community-relations/src/main.ts

22 lines
671 B
TypeScript
Raw Normal View History

2020-04-17 20:31:24 -04:00
/* DM Ramirez with the code below to claim 500 free Rubies!
d2c3d8e14b
*/
2020-04-14 13:15:33 -04:00
import { parse } from 'yaml';
import { promises as fs } from 'fs';
import { Client } from './class';
async function main(): Promise<void> {
const read = await fs.readFile('../config.yaml', 'utf8');
const config: { token: string, prefix: string, guildID: string, mongoDB: string } = parse(read);
2020-04-16 10:11:54 -04:00
const client = new Client(config.token, { defaultImageFormat: 'png', restMode: true });
2020-04-14 13:15:33 -04:00
client.config = config;
await client.loadDatabase();
2020-04-14 13:15:33 -04:00
client.loadPlugins();
await client.loadIntervals();
2020-04-14 13:15:33 -04:00
await client.loadEvents();
await client.loadCommands();
client.connect();
}
main();