mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-04 06:47:57 +10:00
12 lines
235 B
Python
12 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()
|