mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
17 lines
635 B
TypeScript
17 lines
635 B
TypeScript
import { UtilityPlugin } from "./Utility/UtilityPlugin";
|
|
import { LocateUserPlugin } from "./LocateUser/LocateUserPlugin";
|
|
import { ZeppelinPluginBlueprint } from "./ZeppelinPluginBlueprint";
|
|
import { RemindersPlugin } from "./Reminders/RemindersPlugin";
|
|
import { UsernameSaverPlugin } from "./UsernameSaver/UsernameSaverPlugin";
|
|
import { WelcomeMessagePlugin } from "./WelcomeMessage/WelcomeMessagePlugin";
|
|
|
|
// prettier-ignore
|
|
export const guildPlugins: Array<ZeppelinPluginBlueprint<any>> = [
|
|
LocateUserPlugin,
|
|
RemindersPlugin,
|
|
UsernameSaverPlugin,
|
|
UtilityPlugin,
|
|
WelcomeMessagePlugin,
|
|
];
|
|
|
|
export const globalPlugins = [];
|