much better tests and add page ui

This commit is contained in:
Nick Sweeting
2025-12-29 04:02:11 -08:00
parent 9487f8a0de
commit 30c60eef76
93 changed files with 2998 additions and 2712 deletions

View File

@@ -22,7 +22,7 @@ def worker(worker_type: str, daemon: bool = False, plugin: str | None = None):
Workers poll the database for queued items, claim them atomically,
and spawn subprocess tasks to handle each item.
"""
from workers.worker import get_worker_class
from archivebox.workers.worker import get_worker_class
WorkerClass = get_worker_class(worker_type)