initialize deletion events

This commit is contained in:
Baipyrus 2024-02-07 20:27:16 +01:00
parent 0ffb68fd96
commit 3339d7a244
2 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,5 @@
import { Events } from 'discord.js';
export const name = Events.ChannelDelete;
export async function execute(channel) {
}

View File

@ -0,0 +1,5 @@
import { Events } from 'discord.js';
export const name = Events.MessageDelete;
export async function execute(message) {
}