12 lines
409 B
JavaScript
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!');
|
|
},
|
|
}; |