mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-12-28 06:34:15 +00:00
14 lines
322 B
Python
14 lines
322 B
Python
"""
|
|
Workers admin module.
|
|
|
|
The orchestrator/worker system doesn't need Django admin registration
|
|
as workers are managed via CLI commands and the orchestrator.
|
|
"""
|
|
|
|
__package__ = 'archivebox.workers'
|
|
|
|
|
|
def register_admin(admin_site):
|
|
"""No models to register - workers are process-based, not Django models."""
|
|
pass
|