mirror of
https://github.com/eduardogsilva/routerfleet.git
synced 2025-08-01 08:44:41 +02:00
10 lines
271 B
Python
10 lines
271 B
Python
from django.contrib import admin
|
|
from django.urls import path
|
|
from dashboard.views import view_dashboard, view_status
|
|
|
|
|
|
urlpatterns = [
|
|
path('admin/', admin.site.urls),
|
|
path('', view_dashboard, name='dashboard'),
|
|
path('status/', view_status, name='status')
|
|
]
|