Files
ai_ml_operations 3a14bfb996 Initial commit
2026-08-27 04:17:34 -07:00

10 lines
140 B
Python

from django.urls import path
from dashboard import views
app_name = "dashboard"
urlpatterns = [
path("", views.home, name="home"),
]