const { SlashCommandBuilder } = require('discord.js'); module.exports = { data: new SlashCommandBuilder() .setName('test-time') .setDescription('Test the time between now and 4am in discord timestamp'), async execute(interaction) { const date = new Date(new Date().setDate(new Date().getDate() + 1)); date.setUTCHours(3, 0, 0, 0); const test = Math.round(date.getTime() / 1000); await interaction.reply({ content: `Time between now and 4am: ` }, { ephemeral: true }); }, };