1
0
Fork 0
mirror of synced 2024-05-16 10:23:51 +12:00
ArchiveBox/archivebox/core/apps.py

11 lines
176 B
Python

from django.apps import AppConfig
class CoreConfig(AppConfig):
name = 'core'
def ready(self):
from .auth import register_signals
register_signals()