summaryrefslogtreecommitdiff
path: root/server/src/Bot.ts
blob: 899aff4fe21a18e5810d25ef16f07656bf4c514d (plain) (blame)
1
2
3
4
5
import { token, owners } from './Config';
import BotClient from './client/BotClient';

const client: BotClient = new BotClient({ token, owners });
client.start();