Files
ai_ml_operations 8a97e3fbe2 Initial commit
2026-09-06 04:27:41 -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"),
]