Getting hits on the block list IMMEDIATLEY. Log to file, might be important later

This commit is contained in:
William Jeynes
2026-02-22 15:42:27 +00:00
parent 2f33338007
commit 4d92f14527
3 changed files with 8 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
import fs from "fs";
export function writeToJSONL(path: string, line: any) {
fs.appendFileSync(`../data/${path}`, JSON.stringify(line) + "\n", "utf-8");
}