mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 12:13:05 +00:00
9 lines
186 B
Python
9 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)
|