mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-26 22:20:21 +00:00
12 lines
274 B
Python
12 lines
274 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ABXConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'abx'
|
|
|
|
def ready(self):
|
|
import abx
|
|
from django.conf import settings
|
|
|
|
abx.pm.hook.ready(settings=settings)
|