Files
zod-backend/web_admin/apps.py
2023-07-17 18:58:09 +05:30

14 lines
234 B
Python

"""
web_admin app file
"""
# django imports
from django.apps import AppConfig
class WebAdminConfig(AppConfig):
"""
web admin app config
"""
default_auto_field = 'django.db.models.BigAutoField'
name = 'web_admin'