Initialer Bot Upload
Some checks failed
Auto Build and Push Docker Image / build (push) Failing after 15s

This commit is contained in:
2026-03-21 00:24:19 +01:00
commit ceaeabf57a
35 changed files with 3173 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { ChatInputCommandInteraction, SlashCommandBuilder } from 'discord.js';
import { ExtendedClient } from '../../structures/ExtendedClient.js';
import { Command } from '../../structures/Command.js';
const command: Command = {
data: new SlashCommandBuilder()
.setName('ping')
.setDescription('Antwortet mit Pong!'),
category: 'Public',
async execute(interaction: ChatInputCommandInteraction, client: ExtendedClient) {
await interaction.reply('Pong!');
},
};
export default command;