1
1
mirror of https://github.com/Burn-E99/GroupUp.git synced 2026-01-06 19:37:54 -05:00

deno fmt & initialize join/leave/alternate buttons

This commit is contained in:
Ean Milligan (Bastion)
2023-04-07 01:37:04 -04:00
parent 871398a28d
commit d60668e86f
5 changed files with 61 additions and 15 deletions

View File

@ -0,0 +1,10 @@
import { Bot, Interaction } from '../../../deps.ts';
export const customId = 'alternateEvent';
export const execute = async (bot: Bot, interaction: Interaction) => {};
export const alternateEventButton = {
customId,
execute,
};

View File

@ -0,0 +1,10 @@
import { Bot, Interaction } from '../../../deps.ts';
export const customId = 'joinEvent';
export const execute = async (bot: Bot, interaction: Interaction) => {};
export const joinEventButton = {
customId,
execute,
};

View File

@ -0,0 +1,10 @@
import { Bot, Interaction } from '../../../deps.ts';
export const customId = 'leaveEvent';
export const execute = async (bot: Bot, interaction: Interaction) => {};
export const leaveEventButton = {
customId,
execute,
};