mirror of
https://github.com/kjanat/livegraphs-django.git
synced 2026-01-16 14:02:09 +01:00
13 lines
231 B
Python
13 lines
231 B
Python
# dashboard/apps.py
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class DashboardConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "dashboard"
|
|
|
|
def ready(self):
|
|
# Import signals
|
|
pass
|