8 lines
182 B
Python
8 lines
182 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ChatConfig(AppConfig):
|
|
"""Chat 模块应用配置。"""
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "apps.chat"
|