1
0
Fork 0
mirror of synced 2024-06-01 18:20:20 +12:00
ArchiveBox/archivebox/core/apps.py

11 lines
176 B
Python
Raw Normal View History

2019-04-03 09:36:41 +13:00
from django.apps import AppConfig
class CoreConfig(AppConfig):
name = 'core'
def ready(self):
from .auth import register_signals
register_signals()