Files
pixelpoebel/src/commands/utility/ping.ts
sarah ceaeabf57a
Some checks failed
Auto Build and Push Docker Image / build (push) Failing after 15s
Initialer Bot Upload
2026-03-21 00:24:19 +01:00

16 lines
527 B
TypeScript

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;