12 lines
249 B
Python
12 lines
249 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from django.contrib import admin
|
||
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from control_plane.projects.views import dashboard
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("", dashboard, name="dashboard"),
|
||
|
|
path("admin/", admin.site.urls),
|
||
|
|
]
|