mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
chore: fix inconsistent import paths
This commit is contained in:
parent
3db9090705
commit
ac8926cdb8
8 changed files with 10 additions and 10 deletions
|
@ -2,8 +2,6 @@ import { Snowflake } from "discord.js";
|
|||
import humanizeDuration from "humanize-duration";
|
||||
import { GuildPluginData } from "knub";
|
||||
import moment from "moment-timezone";
|
||||
import { LogType } from "src/data/LogType";
|
||||
import { logger } from "src/logger";
|
||||
import { CaseTypes } from "../../../data/CaseTypes";
|
||||
import { Tempban } from "../../../data/entities/Tempban";
|
||||
import { resolveUser } from "../../../utils";
|
||||
|
@ -13,6 +11,8 @@ import { IgnoredEventType, ModActionsPluginType } from "../types";
|
|||
import { formatReasonWithAttachments } from "./formatReasonWithAttachments";
|
||||
import { ignoreEvent } from "./ignoreEvent";
|
||||
import { isBanned } from "./isBanned";
|
||||
import { LogType } from "../../../data/LogType";
|
||||
import { logger } from "../../../logger";
|
||||
|
||||
export async function clearTempban(pluginData: GuildPluginData<ModActionsPluginType>, tempban: Tempban) {
|
||||
if (!(await isBanned(pluginData, tempban.user_id))) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue