This commit is contained in:
legop3
2026-04-29 18:45:41 -04:00
parent 01a8d044e7
commit 9bf449ca19
12 changed files with 219 additions and 127 deletions
+12
View File
@@ -0,0 +1,12 @@
// Idle Service State
// Purpose: Stores runtime timer and bookkeeping state for idle automation scheduling.
// Scope: Encapsulates mutable idle-tracking data shared by idle service modules.
const runtime = {
timer: null,
deadlineAt: null,
lastTriggeredAt: null,
};
module.exports = {
runtime,
};