Add initial presets (#1)

Signed-off-by: Chris Kim <oats87g@gmail.com>
This commit is contained in:
Chris Kim
2025-03-31 19:47:05 -07:00
committed by GitHub
parent e0a9610d02
commit fd9f215f9d
18 changed files with 1899 additions and 0 deletions

6
indexer/check.js Normal file
View File

@@ -0,0 +1,6 @@
'use strict';
const child = require('child_process').fork('indexer/indexer.js', ["nosave"]);
child.on('exit', (code) => {
process.exitCode = code;
});