feat(jobs): ingest.url worker (fetch + readability + idempotent ref)

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
root
2026-06-01 03:35:44 +10:00
parent 6e973404e9
commit 3ccfd20b5f
3 changed files with 92 additions and 1 deletions

View File

@@ -1,7 +1,8 @@
import * as queue from './queue.js';
import * as echo from './workers/echo.js';
import * as url from './workers/url.js';
const WORKERS = [echo];
const WORKERS = [echo, url];
export async function registerWorkers() {
for (const w of WORKERS) {