diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-11-10 22:12:23 -0500 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-11-10 22:12:23 -0500 |
commit | 9923f0751396decaa6febcaa54da9b6ad9b596b1 (patch) | |
tree | 5022a611ae156ff2cd6edb8c124113b539845213 /src/commands/utilities/wolframAlpha.ts | |
parent | 8928d95b87e036f731c7a65d8646d75f5bb42c93 (diff) | |
download | tanzanite-9923f0751396decaa6febcaa54da9b6ad9b596b1.tar.gz tanzanite-9923f0751396decaa6febcaa54da9b6ad9b596b1.tar.bz2 tanzanite-9923f0751396decaa6febcaa54da9b6ad9b596b1.zip |
fixed lots of shit I think
Diffstat (limited to 'src/commands/utilities/wolframAlpha.ts')
-rw-r--r-- | src/commands/utilities/wolframAlpha.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/utilities/wolframAlpha.ts b/src/commands/utilities/wolframAlpha.ts index bc5f939..aba0f57 100644 --- a/src/commands/utilities/wolframAlpha.ts +++ b/src/commands/utilities/wolframAlpha.ts @@ -1,6 +1,6 @@ import { AllowedMentions, BushCommand, type BushMessage, type BushSlashMessage } from '#lib'; import { MessageEmbed, type MessageOptions } from 'discord.js'; -import WolframAlphaAPI from 'wolfram-alpha-api'; +const {default: WolframAlphaAPI} = (await import("wolfram-alpha-api")).default as unknown as typeof import( "wolfram-alpha-api") export default class WolframAlphaCommand extends BushCommand { public constructor() { |