mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 12:13:05 +00:00
10 lines
211 B
Python
10 lines
211 B
Python
__package__ = 'archivebox.crawls'
|
|
__order__ = 100
|
|
|
|
import abx
|
|
|
|
|
|
@abx.hookimpl
|
|
def register_admin(admin_site):
|
|
from .admin import register_admin as register_crawls_admin
|
|
register_crawls_admin(admin_site)
|