Files
2026-02-02 10:52:20 +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