19 lines
578 B
TypeScript
19 lines
578 B
TypeScript
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);
|
|
const client = new Client(config.token, { defaultImageFormat: 'png' });
|
|
client.config = config;
|
|
await client.loadDatabase();
|
|
client.loadPlugins();
|
|
await client.loadIntervals();
|
|
await client.loadEvents();
|
|
await client.loadCommands();
|
|
client.connect();
|
|
}
|
|
|
|
main();
|