WIP: Implementing /nag, /unnag, /checkin
This commit is contained in:
29
commands/calendar/nag/unnag.ts
Normal file
29
commands/calendar/nag/unnag.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
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),
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user