diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-10-03 18:16:11 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-10-03 18:16:11 -0400 |
commit | 3b1311951638bc54efbbb245632e2b3ab460f741 (patch) | |
tree | 07fc42ba19a0ec4a2b3168faf96d284f726fb3da /src/bot.ts | |
parent | 4b4d05d9708bdaef2c93df1a83c4ce7ca4350f7a (diff) | |
download | tanzanite-3b1311951638bc54efbbb245632e2b3ab460f741.tar.gz tanzanite-3b1311951638bc54efbbb245632e2b3ab460f741.tar.bz2 tanzanite-3b1311951638bc54efbbb245632e2b3ab460f741.zip |
new links, bug fixes, excape rtl charecters in welcome messages
Diffstat (limited to 'src/bot.ts')
-rw-r--r-- | src/bot.ts | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,8 +1,7 @@ import 'module-alias/register'; import 'source-map-support/register'; import config from './config/options'; -import { BushClient } from './lib/'; +import { BushClient } from './lib'; BushClient.preStart(); -const client = new BushClient(config); -void client.start(); +void new BushClient(config).start(); |