10 lines
217 B
Python
10 lines
217 B
Python
|
# Copyright (C) 2024 by Animath
|
||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class ChatConfig(AppConfig):
|
||
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
name = "chat"
|