HH/apps/social/apps.py
2026-02-12 15:09:48 +03:00

13 lines
306 B
Python

from django.apps import AppConfig
class SocialConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'apps.social'
def ready(self):
"""
Import signals when app is ready to ensure they are registered.
"""
import apps.social.signals