"""
Notification App Configuration.
"""
from django.apps import AppConfig


class NotificationConfig(AppConfig):
    default_auto_field = 'django.db.models.BigAutoField'
    name = 'apps.services.notification'
    label = 'notification'
    verbose_name = 'Notification Service'

    def ready(self):
        # Import signals to register them
        from . import signals  # noqa: F401
