3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-16 22:55:03 +00:00

refactor: convert /backend to ESM

This commit is contained in:
Dragory 2024-04-09 20:57:18 +03:00
parent 31d74c05aa
commit 5772e27cda
No known key found for this signature in database
766 changed files with 3473 additions and 3500 deletions

View file

@ -1,23 +1,23 @@
import { AutomodActionBlueprint } from "../helpers";
import { AddRolesAction } from "./addRoles";
import { AddToCounterAction } from "./addToCounter";
import { AlertAction } from "./alert";
import { ArchiveThreadAction } from "./archiveThread";
import { BanAction } from "./ban";
import { ChangeNicknameAction } from "./changeNickname";
import { ChangePermsAction } from "./changePerms";
import { CleanAction } from "./clean";
import { KickAction } from "./kick";
import { LogAction } from "./log";
import { MuteAction } from "./mute";
import { PauseInvitesAction } from "./pauseInvites";
import { RemoveRolesAction } from "./removeRoles";
import { ReplyAction } from "./reply";
import { SetAntiraidLevelAction } from "./setAntiraidLevel";
import { SetCounterAction } from "./setCounter";
import { SetSlowmodeAction } from "./setSlowmode";
import { StartThreadAction } from "./startThread";
import { WarnAction } from "./warn";
import { AutomodActionBlueprint } from "../helpers.js";
import { AddRolesAction } from "./addRoles.js";
import { AddToCounterAction } from "./addToCounter.js";
import { AlertAction } from "./alert.js";
import { ArchiveThreadAction } from "./archiveThread.js";
import { BanAction } from "./ban.js";
import { ChangeNicknameAction } from "./changeNickname.js";
import { ChangePermsAction } from "./changePerms.js";
import { CleanAction } from "./clean.js";
import { KickAction } from "./kick.js";
import { LogAction } from "./log.js";
import { MuteAction } from "./mute.js";
import { PauseInvitesAction } from "./pauseInvites.js";
import { RemoveRolesAction } from "./removeRoles.js";
import { ReplyAction } from "./reply.js";
import { SetAntiraidLevelAction } from "./setAntiraidLevel.js";
import { SetCounterAction } from "./setCounter.js";
import { SetSlowmodeAction } from "./setSlowmode.js";
import { StartThreadAction } from "./startThread.js";
import { WarnAction } from "./warn.js";
export const availableActions = {
clean: CleanAction,