Files
ihrm/base/apps.py

20 lines
357 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"
def ready(self) -> None:
from base import signals
super().ready()