This commit is contained in:
2024-12-27 01:23:35 +01:00
parent 7d349a37d4
commit c06ac10d09
18 changed files with 543 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { SlashCommandBuilder } from "discord.js";
import { z } from "zod";
export const Commands = z.enum(["water-me"]);
export type CommandsType = z.output<typeof Commands>;
export default function getCommands() {
const commands = [
new SlashCommandBuilder()
.setName(Commands.Enum["water-me"])
.setDescription("giess mich mit etwas wasser :3"),
].map((command) => command.toJSON());
return commands;
}