mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-23 20:53:09 +00:00
12 lines
281 B
Python
12 lines
281 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
name = 'core'
|
|
# WIP: broken by Django 3.1.2 -> 4.0 migration
|
|
default_auto_field = 'django.db.models.UUIDField'
|
|
|
|
def ready(self):
|
|
from .auth import register_signals
|
|
|
|
register_signals()
|