From 69ee765889714c55db5d6a0efe677d457342b4ce Mon Sep 17 00:00:00 2001 From: neru Date: Fri, 6 Feb 2026 14:03:21 -0300 Subject: [PATCH] feat: add bot category --- src/commands/bot/_category.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/commands/bot/_category.ts diff --git a/src/commands/bot/_category.ts b/src/commands/bot/_category.ts new file mode 100644 index 0000000..fe9e00b --- /dev/null +++ b/src/commands/bot/_category.ts @@ -0,0 +1,8 @@ +import { CommandCategoryInfo } from '../../commands'; + +const info: CommandCategoryInfo = { + name: 'Bot', + description: 'Bot management commands' +}; + +export default info;