mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-07 03:16:01 +10:00
10 lines
186 B
Python
10 lines
186 B
Python
__package__ = 'archivebox.workers'
|
|
__order__ = 100
|
|
|
|
import abx
|
|
|
|
@abx.hookimpl
|
|
def register_admin(admin_site):
|
|
from workers.admin import register_admin
|
|
register_admin(admin_site)
|