mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-02-05 10:57:32 +08: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)
|