"""
chat/apps.py

Configuration for the Chat application.
"""

from django.apps import AppConfig


class ChatConfig(AppConfig):
    """
    App configuration for the Chat module.
    """

    default_auto_field = "django.db.models.BigAutoField"
    name = "chat"
    verbose_name = "Chat"

