mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-10 06:34:16 +00:00
14 lines
No EOL
291 B
Python
14 lines
No EOL
291 B
Python
__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)
|
|
|