mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-03 14:27:55 +10:00
14 lines
289 B
Python
14 lines
289 B
Python
__package__ = 'archivebox.pkg'
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class PkgsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'pkg'
|
|
|
|
def ready(self):
|
|
from .settings import LOADED_DEPENDENCIES
|
|
|
|
# print(LOADED_DEPENDENCIES)
|
|
|