mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-05 15:27:53 +10:00
new plugin loading system
This commit is contained in:
14
archivebox/pkgs/apps.py
Normal file
14
archivebox/pkgs/apps.py
Normal file
@@ -0,0 +1,14 @@
|
||||
__package__ = 'archivebox.pkgs'
|
||||
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class PkgsConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'pkgs'
|
||||
|
||||
def ready(self):
|
||||
from .settings import LOADED_DEPENDENCIES
|
||||
|
||||
# print(LOADED_DEPENDENCIES)
|
||||
|
||||
Reference in New Issue
Block a user