mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-04 23:07:56 +10:00
38 lines
492 B
Python
38 lines
492 B
Python
__package__ = 'abx.archivebox'
|
|
|
|
from typing import Dict, Any
|
|
|
|
from .. import hookspec
|
|
|
|
from .base_configset import BaseConfigSet
|
|
|
|
@hookspec
|
|
def get_CONFIG() -> BaseConfigSet:
|
|
...
|
|
|
|
|
|
@hookspec
|
|
def get_EXTRACTORS():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_REPLAYERS():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_ADMINDATAVIEWS():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_QUEUES():
|
|
return {}
|
|
|
|
@hookspec
|
|
def get_SEARCHBACKENDS():
|
|
return {}
|
|
|
|
|
|
@hookspec
|
|
def extract(snapshot_id) -> Dict[str, Any]:
|
|
return {}
|