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

12 lines
409 B
JavaScript

import { SlashCommandBuilder } from 'discord.js'
import { getLSFromGuildId, getLSModel } from "../../Utility/lsModel.js"
export default {
data: new SlashCommandBuilder()
.setName('lchelp')
.setDescription('View Bot Info'),
async execute(interaction) {
console.log(interaction)
console.log(getLSFromGuildId(interaction.guildId))
await interaction.reply('Some whitty response!');
},
};