mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2025-04-05 21:01:40 +03:00
18 lines
367 B
JavaScript
18 lines
367 B
JavaScript
/**
|
|
*
|
|
* @name DiscordTickets
|
|
* @author eartharoid <contact@eartharoid.me>
|
|
* @license GNU-GPLv3
|
|
*
|
|
*/
|
|
|
|
const ChildLogger = require('leekslazylogger').ChildLogger;
|
|
const log = new ChildLogger();
|
|
|
|
module.exports = {
|
|
event: 'rateLimit',
|
|
execute(_client, [limit]) {
|
|
log.warn('Rate-limited! (Enable debug mode in config for details)');
|
|
log.debug(limit);
|
|
}
|
|
}; |