mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-22 20:23:12 +00:00
13 lines
245 B
Python
13 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)
|