Browse Source

load crawls,seeds,actors apps as pluggy plugins

Nick Sweeting 1 year ago
parent
commit
7c0e3dcc21
1 changed files with 3 additions and 0 deletions
  1. 3 0
      archivebox/__init__.py

+ 3 - 0
archivebox/__init__.py

@@ -83,6 +83,9 @@ ABX_ECOSYSTEM_PLUGINS = abx.get_pip_installed_plugins(group='abx')
 ARCHIVEBOX_BUILTIN_PLUGINS = {
     'config': PACKAGE_DIR / 'config',
     'core': PACKAGE_DIR / 'core',
+    'crawls': PACKAGE_DIR / 'crawls',
+    'seeds': PACKAGE_DIR / 'seeds',
+    'actors': PACKAGE_DIR / 'actors',
     # 'search': PACKAGE_DIR / 'search',
     # 'core': PACKAGE_DIR / 'core',
 }