Files
ihrm/base/apps.py
2023-09-08 14:38:51 +05:30

14 lines
268 B
Python

"""
This module contains the configuration for the 'base' app.
"""
from django.apps import AppConfig
class BaseConfig(AppConfig):
"""
Configuration class for the 'base' app.
"""
default_auto_field = "django.db.models.BigAutoField"
name = "base"