Parent Directory
|
Revision Log
fix: remove unneeded imports
1 | rakin | 77 | import BaseEvent from '../../utils/structures/BaseEvent'; |
2 | import DiscordClient from '../../client/Client'; | ||
3 | import { runTimeouts } from '../../utils/setTimeout'; | ||
4 | import { LogLevel } from '../../services/DebugLogger'; | ||
5 | import { Guild } from 'discord.js'; | ||
6 | |||
7 | export default class GuildDeleteEvent extends BaseEvent { | ||
8 | constructor() { | ||
9 | super('guildDelete'); | ||
10 | } | ||
11 | |||
12 | async run(client: DiscordClient, guild: Guild) { | ||
13 | await client.debugLogger.logLeaveJoin(LogLevel.INFO, `Left a guild: ${guild.name} [ID: ${guild.id}]`); | ||
14 | } | ||
15 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |