ArchiveBox/archivebox/core/apps.py

10 lines
176 B
Python

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