Files
2026-08-08 16:11:57 +03:00

10 lines
212 B
Python

from django.apps import AppConfig
class SandtableConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'sandtable'
def ready(self):
# Startup code here
pass