mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-04-03 22:37:53 +10:00
14 lines
245 B
Python
14 lines
245 B
Python
__package__ = 'abx.django'
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ABXConfig(AppConfig):
|
|
name = 'abx'
|
|
|
|
def ready(self):
|
|
import abx
|
|
from django.conf import settings
|
|
|
|
abx.pm.hook.ready(settings=settings)
|