mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-04 14:57:56 +10:00
33 lines
382 B
Python
33 lines
382 B
Python
__package__ = 'abx.archivebox'
|
|
|
|
from .. import hookspec
|
|
|
|
|
|
@hookspec
|
|
def get_CONFIGS():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_EXTRACTORS():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_REPLAYERS():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_CHECKS():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_ADMINDATAVIEWS():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_QUEUES():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_SEARCHBACKENDS():
|
|
return {}
|