From 42d8e605b497c98ed7a4b7e6f31fa1cc6d56e38a Mon Sep 17 00:00:00 2001 From: TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> Date: Tue, 11 May 2021 22:22:19 -0600 Subject: re-organize models --- src/commands/moderation/ban.ts | 2 +- src/commands/moderation/kick.ts | 2 +- src/commands/moderation/modlog.ts | 2 +- src/commands/moderation/warn.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/commands') 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 = { 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() { -- cgit