diff options
Diffstat (limited to 'src/commands')
-rw-r--r-- | src/commands/moderation/ban.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/kick.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/modlog.ts | 2 | ||||
-rw-r--r-- | src/commands/moderation/warn.ts | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/src/commands/moderation/ban.ts b/src/commands/moderation/ban.ts index 300101b..fc861dc 100644 --- a/src/commands/moderation/ban.ts +++ b/src/commands/moderation/ban.ts @@ -1,7 +1,7 @@ import { User } from 'discord.js'; import { BotCommand } from '../../lib/extensions/BotCommand'; import { BotMessage } from '../../lib/extensions/BotMessage'; -import { Ban, Modlog, ModlogType } from '../../lib/types/Models'; +import { Ban, Modlog, ModlogType } from '../../lib/models'; import moment from 'moment'; const durationAliases: Record<string, string[]> = { diff --git a/src/commands/moderation/kick.ts b/src/commands/moderation/kick.ts index 0dc4276..dcd19de 100644 --- a/src/commands/moderation/kick.ts +++ b/src/commands/moderation/kick.ts @@ -1,6 +1,6 @@ import { BotCommand } from '../../lib/extensions/BotCommand'; import { BotMessage } from '../../lib/extensions/BotMessage'; -import { Modlog, ModlogType } from '../../lib/types/Models'; +import { Modlog, ModlogType } from '../../lib/models'; import { GuildMember } from 'discord.js'; export default class PrefixCommand extends BotCommand { diff --git a/src/commands/moderation/modlog.ts b/src/commands/moderation/modlog.ts index ea35198..dbb101c 100644 --- a/src/commands/moderation/modlog.ts +++ b/src/commands/moderation/modlog.ts @@ -1,6 +1,6 @@ import { BotCommand } from '../../lib/extensions/BotCommand'; import { Message } from 'discord.js'; -import { Modlog } from '../../lib/types/Models'; +import { Modlog } from '../../lib/models'; import { MessageEmbed } from 'discord.js'; import moment from 'moment'; import { stripIndent } from 'common-tags'; diff --git a/src/commands/moderation/warn.ts b/src/commands/moderation/warn.ts index 676615d..755a036 100644 --- a/src/commands/moderation/warn.ts +++ b/src/commands/moderation/warn.ts @@ -1,7 +1,7 @@ import { GuildMember } from 'discord.js'; import { BotCommand } from '../../lib/extensions/BotCommand'; import { BotMessage } from '../../lib/extensions/BotMessage'; -import { Modlog, ModlogType } from '../../lib/types/Models'; +import { Modlog, ModlogType } from '../../lib/models'; export default class WarnCommand extends BotCommand { public constructor() { |