A discord bot for teal.fm
discord
tealfm
music
1import { logger } from "@tealfmbot/common/logger";
2import { CommandInteraction, SlashCommandBuilder } from "discord.js";
3
4export default {
5 data: new SlashCommandBuilder().setName("ping").setDescription("replies with pong"),
6 async execute(interaction: CommandInteraction) {
7 await interaction.reply("pong lol");
8 logger.info("ping command sent");
9 },
10};