mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-09 12:21:57 -04:00
32 lines
382 B
Python
32 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 {}
|