first commit
This commit is contained in:
13
backend/monitoring/urls.py
Normal file
13
backend/monitoring/urls.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
|
||||
urlpatterns = [
|
||||
path("dashboard/", views.dashboard_snapshot, name="dashboard-snapshot"),
|
||||
path("gps/latest/", views.gps_latest, name="gps-latest"),
|
||||
path("network/latest/", views.network_latest, name="network-latest"),
|
||||
path("video/status/", views.video_status, name="video-status"),
|
||||
path("video/frame/", views.video_frame, name="video-frame"),
|
||||
path("video/stream/", views.video_stream, name="video-stream"),
|
||||
]
|
||||
Reference in New Issue
Block a user