3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 12:25:02 +00:00

Port BotControl

This commit is contained in:
Dragory 2020-07-30 03:21:07 +03:00
parent b66e601cef
commit f500034729
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
10 changed files with 237 additions and 2 deletions

View file

@ -29,6 +29,7 @@ import { ReactionRolesPlugin } from "./ReactionRoles/ReactionRolesPlugin";
import { AutomodPlugin } from "./Automod/AutomodPlugin";
import { CompanionChannelsPlugin } from "./CompanionChannels/CompanionChannelsPlugin";
import { CustomEventsPlugin } from "./CustomEvents/CustomEventsPlugin";
import { BotControlPlugin } from "./BotControl/BotControlPlugin";
// prettier-ignore
export const guildPlugins: Array<ZeppelinPluginBlueprint<any>> = [
@ -66,4 +67,5 @@ export const guildPlugins: Array<ZeppelinPluginBlueprint<any>> = [
// prettier-ignore
export const globalPlugins = [
GuildConfigReloaderPlugin,
BotControlPlugin,
];