Files
ihrm/employee/apps.py

22 lines
497 B
Python
Raw Normal View History

"""
apps.py
"""
2023-05-10 15:06:57 +05:30
from django.apps import AppConfig
class EmployeeConfig(AppConfig):
"""
AppConfig for the 'employee' app.
This class represents the configuration for the 'employee' app. It provides
the necessary settings and metadata for the app.
Attributes:
default_auto_field (str): The default auto field to use for model field IDs.
name (str): The name of the app.
"""
default_auto_field = "django.db.models.BigAutoField"
name = "employee"