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:
10
src/buttons/live-event/alternateEvent.ts
Normal file
10
src/buttons/live-event/alternateEvent.ts
Normal 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,
|
||||
};
|
||||
10
src/buttons/live-event/joinEvent.ts
Normal file
10
src/buttons/live-event/joinEvent.ts
Normal 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,
|
||||
};
|
||||
10
src/buttons/live-event/leaveEvent.ts
Normal file
10
src/buttons/live-event/leaveEvent.ts
Normal 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,
|
||||
};
|
||||
Reference in New Issue
Block a user