mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 06:34:25 -04:00
30 lines
357 B
Python
30 lines
357 B
Python
from .hookspec 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 {}
|