import { logger } from "@tealfmbot/common/logger"; // import {db} from "@tealfmbot/database/db" import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js"; export default { data: new SlashCommandBuilder() .setName("recent") .setDescription( "Show your most recently played track", ), async execute(interaction: ChatInputCommandInteraction) { await interaction.reply("recent"); logger.info( `fetching recent track for ${interaction.user.username} in guild ${interaction.guildId} at ${new Date().toJSON()}`, ); }, };