27 lines
523 B
TypeScript
27 lines
523 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),
|
|
};
|
|
}
|