30 lines
528 B
TypeScript
30 lines
528 B
TypeScript
import {
|
|
ChatInputCommandInteraction,
|
|
Client,
|
|
SlashCommandBuilder,
|
|
} from "discord.js";
|
|
import { Sequelize } from "sequelize";
|
|
|
|
import { Settings } from './common'
|
|
|
|
|
|
const data = new SlashCommandBuilder()
|
|
.setName("unnag")
|
|
.setDescription("Remove a nag");
|
|
|
|
|
|
async function initialize(settings: Settings) {
|
|
}
|
|
|
|
async function execute(interaction: ChatInputCommandInteraction) {
|
|
return;
|
|
}
|
|
|
|
export default function (settings: Settings) {
|
|
return {
|
|
data,
|
|
execute,
|
|
initialize: async() => await initialize(settings),
|
|
};
|
|
}
|