From b81f9e8b73cb520ad5ae916c3e571ea55f4ca489 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sat, 20 Aug 2022 23:07:02 -0400 Subject: fix ts composite shit, replace got with native fetch, update deps --- src/bot.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/bot.ts') diff --git a/src/bot.ts b/src/bot.ts index 10818e9..ed8ca65 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -1,11 +1,13 @@ +console.log('Tanzanite is Starting'); + import { init } from '../lib/utils/BushLogger.js'; // creates proxies on console.log and console.warn // also starts a REPL session init(); +import { config } from '#config'; import { dirname } from 'path'; import { fileURLToPath } from 'url'; -import { default as config } from '../config/options.js'; import { Sentry } from '../lib/common/Sentry.js'; import { BushClient } from '../lib/extensions/discord-akairo/BushClient.js'; @@ -16,7 +18,6 @@ const client = new BushClient(config); if (!isDry) await client.dbPreInit(); await client.init(); if (isDry) { - await client.destroy(); process.exit(0); } else { await client.start(); -- cgit