diff options
Diffstat (limited to 'src/commands/utilities')
-rw-r--r-- | src/commands/utilities/activity.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/hash.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/price.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/uuid.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/viewRaw.ts | 2 | ||||
-rw-r--r-- | src/commands/utilities/whoHasRole.ts | 3 |
6 files changed, 6 insertions, 7 deletions
diff --git a/src/commands/utilities/activity.ts b/src/commands/utilities/activity.ts index e2a3352..4066934 100644 --- a/src/commands/utilities/activity.ts +++ b/src/commands/utilities/activity.ts @@ -1,5 +1,5 @@ +import { BushCommand, BushMessage, BushSlashMessage } from '@lib'; import { DiscordAPIError, Message, VoiceChannel } from 'discord.js'; -import { BushCommand, BushMessage, BushSlashMessage } from '../../lib'; const activityMap = { 'Poker Night': '755827207812677713', diff --git a/src/commands/utilities/hash.ts b/src/commands/utilities/hash.ts index df604c8..a8fdee1 100644 --- a/src/commands/utilities/hash.ts +++ b/src/commands/utilities/hash.ts @@ -1,6 +1,6 @@ +import { BushCommand, BushMessage } from '@lib'; import crypto from 'crypto'; import got from 'got'; -import { BushCommand, BushMessage } from '../../lib'; export default class HashCommand extends BushCommand { public constructor() { diff --git a/src/commands/utilities/price.ts b/src/commands/utilities/price.ts index be3da8e..4d21c02 100644 --- a/src/commands/utilities/price.ts +++ b/src/commands/utilities/price.ts @@ -1,7 +1,7 @@ +import { BushCommand, BushMessage } from '@lib'; import { CommandInteraction, MessageEmbed } from 'discord.js'; import Fuse from 'fuse.js'; import got from 'got'; -import { BushCommand, BushMessage } from '../../lib'; interface Summary { amount: number; diff --git a/src/commands/utilities/uuid.ts b/src/commands/utilities/uuid.ts index 9484729..823d1ff 100644 --- a/src/commands/utilities/uuid.ts +++ b/src/commands/utilities/uuid.ts @@ -1,4 +1,4 @@ -import { BushCommand, BushMessage } from '../../lib'; +import { BushCommand, BushMessage } from '@lib'; export default class UuidCommand extends BushCommand { public constructor() { diff --git a/src/commands/utilities/viewRaw.ts b/src/commands/utilities/viewRaw.ts index b7017c6..60529c5 100644 --- a/src/commands/utilities/viewRaw.ts +++ b/src/commands/utilities/viewRaw.ts @@ -1,5 +1,5 @@ +import { BushCommand, BushMessage, BushSlashMessage } from '@lib'; import { DMChannel, MessageEmbed, NewsChannel, Snowflake, TextChannel } from 'discord.js'; -import { BushCommand, BushMessage, BushSlashMessage } from '../../lib'; export default class ViewRawCommand extends BushCommand { public constructor() { diff --git a/src/commands/utilities/whoHasRole.ts b/src/commands/utilities/whoHasRole.ts index bce88d6..be27c7c 100644 --- a/src/commands/utilities/whoHasRole.ts +++ b/src/commands/utilities/whoHasRole.ts @@ -1,6 +1,5 @@ -import { BushCommand, BushMessage, BushSlashMessage } from '@lib'; +import { BushCommand, BushMessage, BushSlashMessage, ButtonPaginator } from '@lib'; import { CommandInteraction, Role, Util } from 'discord.js'; -import { ButtonPaginator } from '../../lib/common/ButtonPaginator'; export default class WhoHasRoleCommand extends BushCommand { public constructor() { |