LinkCloudDev/server/commands/utility/linkcloudstatus.js

14 lines
603 B
JavaScript
Raw Permalink Normal View History

2024-08-02 22:55:55 +00:00
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 });
},
};