Files
civic-fix/civicfix/core/apps.py
T
2025-08-18 20:23:47 +05:30

9 lines
239 B
Python

from django.apps import AppConfig
class CoreConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'core'
def ready(self):
# Import signals or other startup code here if needed
pass