Marwan Alwali 2f1681b18c update
2025-11-11 13:44:48 +03:00

19 lines
442 B
Python

"""
Psychology app configuration.
"""
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _
class PsychologyConfig(AppConfig):
"""Configuration for the Psychology app."""
default_auto_field = 'django.db.models.BigAutoField'
name = 'psychology'
verbose_name = _('Psychology')
def ready(self):
"""Import signals when app is ready."""
import psychology.signals