import { SlashCommandBuilder, ActionRowBuilder, Events, ModalBuilder, TextInputBuilder, TextInputStyle } from 'discord.js' import { getLSFromGuildId, getLSModel } from "../../Utility/lsModel.js" import { event } from "../../Utility/eventHandler.js"; export default { data: new SlashCommandBuilder() .setName('lcstatus') .setDescription('Show the status of LinkCloud.'), async execute(interaction) { const userString = interaction.user.id await interaction.reply({ content: `Link Cloud Status: Online\nYour LinkCloud client is connected to the LinkCloud service.`, ephemeral: true }); }, };