3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-07-07 19:17:19 +00:00
zeppelin/backend/src/plugins/BotControl/docs.ts
2024-08-11 02:05:23 +03:00

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
`),
};