diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-11 20:52:56 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-11 20:52:56 -0400 |
commit | 66b958cd1d38a8ba0d64ecd188bc8d90e850cfbb (patch) | |
tree | c1b586329f281d690b69247dca7311a080e91921 /src/commands/info | |
parent | 5cc921fe1bdd24859ad1b15d73c86980de8f4ea0 (diff) | |
download | tanzanite-66b958cd1d38a8ba0d64ecd188bc8d90e850cfbb.tar.gz tanzanite-66b958cd1d38a8ba0d64ecd188bc8d90e850cfbb.tar.bz2 tanzanite-66b958cd1d38a8ba0d64ecd188bc8d90e850cfbb.zip |
fix: circular imports
Diffstat (limited to 'src/commands/info')
-rw-r--r-- | src/commands/info/botInfo.ts | 2 | ||||
-rw-r--r-- | src/commands/info/help.ts | 2 | ||||
-rw-r--r-- | src/commands/info/ping.ts | 2 | ||||
-rw-r--r-- | src/commands/info/pronouns.ts | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/info/botInfo.ts b/src/commands/info/botInfo.ts index 80ca29d..d9961af 100644 --- a/src/commands/info/botInfo.ts +++ b/src/commands/info/botInfo.ts @@ -1,5 +1,5 @@ +import { BushCommand, BushMessage, BushSlashMessage } from '@lib'; import { MessageEmbed } from 'discord.js'; -import { BushCommand, BushMessage, BushSlashMessage } from '../../lib'; export default class BotInfoCommand extends BushCommand { public constructor() { diff --git a/src/commands/info/help.ts b/src/commands/info/help.ts index a561d69..439f0ef 100644 --- a/src/commands/info/help.ts +++ b/src/commands/info/help.ts @@ -1,5 +1,5 @@ +import { BushCommand, BushMessage, BushSlashMessage } from '@lib'; import { MessageActionRow, MessageButton, MessageEmbed } from 'discord.js'; -import { BushCommand, BushMessage, BushSlashMessage } from '../../lib'; export default class HelpCommand extends BushCommand { public constructor() { diff --git a/src/commands/info/ping.ts b/src/commands/info/ping.ts index 804ede2..4638aa9 100644 --- a/src/commands/info/ping.ts +++ b/src/commands/info/ping.ts @@ -1,5 +1,5 @@ +import { BushCommand, BushMessage, BushSlashMessage } from '@lib'; import { Message, MessageEmbed } from 'discord.js'; -import { BushCommand, BushMessage, BushSlashMessage } from '../../lib'; export default class PingCommand extends BushCommand { public constructor() { diff --git a/src/commands/info/pronouns.ts b/src/commands/info/pronouns.ts index 241dce3..60701d1 100644 --- a/src/commands/info/pronouns.ts +++ b/src/commands/info/pronouns.ts @@ -1,6 +1,6 @@ +import { BushCommand, BushSlashMessage } from '@lib'; import { Message, MessageEmbed, User } from 'discord.js'; import got, { HTTPError } from 'got'; -import { BushCommand, BushSlashMessage } from '../../lib'; export const pronounMapping = { unspecified: 'Unspecified', |