LinkCloudDev/server/commands/utility/linkcloudstatus.js
2024-08-02 18:55:55 -04:00

14 lines
603 B
JavaScript

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 });
},
};