mirror of
https://github.com/movixcorp/MovixOpenSource.git
synced 2026-07-26 20:42:08 +00:00
6 lines
207 B
JavaScript
6 lines
207 B
JavaScript
/** Shared shutdown flag — set by server.js, read by any module. */
|
|
let shuttingDown = false;
|
|
module.exports = {
|
|
isShuttingDown: () => shuttingDown,
|
|
setShuttingDown: () => { shuttingDown = true; },
|
|
};
|