From be60d01553dc4e948c8c13400d5a4932fd741ed8 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sun, 21 Aug 2022 12:39:42 -0400 Subject: misc --- lib/models/shared/GuildCount.ts | 2 +- lib/models/shared/Shared.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/models/shared') diff --git a/lib/models/shared/GuildCount.ts b/lib/models/shared/GuildCount.ts index 7afef56..25fd6c0 100644 --- a/lib/models/shared/GuildCount.ts +++ b/lib/models/shared/GuildCount.ts @@ -1,5 +1,5 @@ +import { Environment } from '#config'; import { DataTypes, Model, type Sequelize } from 'sequelize'; -import { Environment } from '../../../config/Config.js'; export interface GuildCountModel { timestamp: Date; diff --git a/lib/models/shared/Shared.ts b/lib/models/shared/Shared.ts index bf8d461..3d83747 100644 --- a/lib/models/shared/Shared.ts +++ b/lib/models/shared/Shared.ts @@ -1,6 +1,6 @@ +import { BadWords } from '#lib/automod/AutomodShared.js'; import { Snowflake } from 'discord.js'; import { DataTypes, Sequelize } from 'sequelize'; -import { BadWords } from '../../automod/AutomodShared.js'; import { BaseModel } from '../BaseModel.js'; export interface SharedModel { -- cgit