WIP: Implementing /nag, /unnag, /checkin

This commit is contained in:
2025-07-04 10:36:40 -04:00
parent 40bf06f288
commit e53d38e0ad
5 changed files with 269 additions and 5 deletions

View 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),
};
}