initialize project structure with core modules and configuration

This commit is contained in:
ImBenji
2026-04-16 22:47:34 +01:00
parent 82d856a21d
commit 7724fafbdc
20 changed files with 3644 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
const ingestionState = new Map();
function markSourceRun(source) {
ingestionState.set(source, new Date().toISOString());
}
function getLastIngestionBySource() {
return Object.fromEntries(ingestionState.entries());
}
module.exports = {
markSourceRun,
getLastIngestionBySource,
};