diff options
Diffstat (limited to 'server/src/Bot.ts')
| -rw-r--r-- | server/src/Bot.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/src/Bot.ts b/server/src/Bot.ts new file mode 100644 index 0000000..899aff4 --- /dev/null +++ b/server/src/Bot.ts @@ -0,0 +1,5 @@ +import { token, owners } from './Config'; +import BotClient from './client/BotClient'; + +const client: BotClient = new BotClient({ token, owners }); +client.start();
\ No newline at end of file |