mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-03 22:37:53 +10:00
35 lines
636 B
Python
35 lines
636 B
Python
__package__ = 'abx.archivebox'
|
|
|
|
from typing import Dict, Any
|
|
|
|
from .. import hookspec
|
|
|
|
from .base_configset import BaseConfigSet
|
|
from .base_extractor import BaseExtractor
|
|
from .base_searchbackend import BaseSearchBackend
|
|
|
|
|
|
@hookspec
|
|
def get_CONFIG() -> Dict[str, BaseConfigSet]:
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_EXTRACTORS() -> Dict[str, BaseExtractor]:
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_SEARCHBACKENDS() -> Dict[str, BaseSearchBackend]:
|
|
return {}
|
|
|
|
# @hookspec
|
|
# def get_REPLAYERS() -> Dict[str, BaseReplayer]:
|
|
# return {}
|
|
|
|
# @hookspec
|
|
# def get_ADMINDATAVIEWS():
|
|
# return {}
|
|
|
|
# @hookspec
|
|
# def get_QUEUES():
|
|
# return {}
|