diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-04 17:07:38 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-04 17:07:38 -0400 |
commit | 1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4 (patch) | |
tree | aa4ae8c7e2315d6ebd6500000a17d3a1c45b4c87 /src/listeners/other | |
parent | 153a40fbcd314459f94d9a2b44d3466c930c4e35 (diff) | |
download | tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.tar.gz tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.tar.bz2 tanzanite-1dee5bcda6a43eaa7fcc88ed3b0e458f32104de4.zip |
cleaned up lib imports
Diffstat (limited to 'src/listeners/other')
-rw-r--r-- | src/listeners/other/consoleListener.ts | 4 | ||||
-rw-r--r-- | src/listeners/other/promiseRejection.ts | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/listeners/other/consoleListener.ts b/src/listeners/other/consoleListener.ts index b3d30ad..d1915f1 100644 --- a/src/listeners/other/consoleListener.ts +++ b/src/listeners/other/consoleListener.ts @@ -1,6 +1,6 @@ /* eslint-disable @typescript-eslint/no-var-requires */ /* eslint-disable @typescript-eslint/no-unused-vars */ -import { BushListener } from '../../lib/extensions/discord-akairo/BushListener'; +import { BushListener } from '../../lib'; export default class ConsoleListener extends BushListener { public constructor() { @@ -15,7 +15,7 @@ export default class ConsoleListener extends BushListener { const bot = this.client, config = this.client.config, client = this.client, - { Ban, Global, Guild, Level, ModLog, StickyRole } = await import('../../lib/models/index.js'), + { Ban, Global, Guild, Level, ModLog, StickyRole } = await import('../../lib'), { ButtonInteraction, Collector, diff --git a/src/listeners/other/promiseRejection.ts b/src/listeners/other/promiseRejection.ts index 228c65d..883197a 100644 --- a/src/listeners/other/promiseRejection.ts +++ b/src/listeners/other/promiseRejection.ts @@ -1,4 +1,4 @@ -import { BushListener } from '../../lib/extensions/discord-akairo/BushListener'; +import { BushListener } from '../../lib'; export default class PromiseRejectionListener extends BushListener { public constructor() { |