mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-07-07 19:17:19 +00:00
13 lines
395 B
TypeScript
13 lines
395 B
TypeScript
import { ZeppelinPluginDocs } from "../../types.js";
|
|
import { trimPluginDescription } from "../../utils.js";
|
|
import { zBotControlConfig } from "./types.js";
|
|
|
|
export const botControlPluginDocs: ZeppelinPluginDocs = {
|
|
type: "stable",
|
|
configSchema: zBotControlConfig,
|
|
|
|
prettyName: "Bot control",
|
|
description: trimPluginDescription(`
|
|
Contains commands to manage allowed servers
|
|
`),
|
|
};
|