mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-05-10 12:25:02 +00:00
16 lines
445 B
TypeScript
16 lines
445 B
TypeScript
import { zeppelinPlugin } from "../ZeppelinPluginBlueprint";
|
|
import { ChannelArchiverPluginType } from "./types";
|
|
import { ArchiveChannelCmd } from "./commands/ArchiveChannelCmd";
|
|
|
|
export const ChannelArchiverPlugin = zeppelinPlugin<ChannelArchiverPluginType>()("channel_archiver", {
|
|
showInDocs: false,
|
|
|
|
// prettier-ignore
|
|
commands: [
|
|
ArchiveChannelCmd,
|
|
],
|
|
|
|
onLoad(pluginData) {
|
|
const { state, guild } = pluginData;
|
|
},
|
|
});
|