Files
broccolini-bot/handlers/pendingCloses.js
indifferentketchup 69c247ed1b huge changes
2026-04-07 01:43:06 -05:00

9 lines
251 B
JavaScript

/**
* Shared pending-close timer map.
* Keyed by channel.id → { timeout, userId, username }.
* Used by buttons.js (sets timers) and commands.js (cancel-close clears them).
*/
const pendingCloses = new Map();
module.exports = { pendingCloses };