WIP: Implementing /nag, /unnag, /checkin
This commit is contained in:
26
commands/calendar/nag/checkin.ts
Normal file
26
commands/calendar/nag/checkin.ts
Normal file
@@ -0,0 +1,26 @@
|
||||
import { ChatInputCommandInteraction, SlashCommandBuilder } from "discord.js";
|
||||
|
||||
import { Settings } from "./common";
|
||||
|
||||
import { Nag, CheckIn } from './common';
|
||||
|
||||
const data = new SlashCommandBuilder()
|
||||
.setName("checkin")
|
||||
.setDescription("Check-in for your daily nag")
|
||||
.addStringOption((option) =>
|
||||
option
|
||||
.setName("text")
|
||||
.setDescription("Optional description of what you have achieved"),
|
||||
);
|
||||
|
||||
async function initialize(settings: Settings) {}
|
||||
|
||||
function execute(interaction: ChatInputCommandInteraction) {
|
||||
|
||||
}
|
||||
|
||||
export default function () {
|
||||
return {
|
||||
data,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user