mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-14 15:14:31 -04:00
11 lines
235 B
Python
11 lines
235 B
Python
__package__ = 'plugins_extractor.archivedotorg'
|
|
|
|
|
|
from abx.archivebox.base_configset import BaseConfigSet
|
|
|
|
|
|
class ArchivedotorgConfig(BaseConfigSet):
|
|
SAVE_ARCHIVE_DOT_ORG: bool = True
|
|
|
|
|
|
ARCHIVEDOTORG_CONFIG = ArchivedotorgConfig()
|