2026-04-11 03:54:15 +03:30
|
|
|
from django.urls import path
|
|
|
|
|
|
2026-04-29 01:27:16 +03:30
|
|
|
from .views import (
|
|
|
|
|
Sensor7In1SummaryView,
|
|
|
|
|
)
|
2026-04-11 03:54:15 +03:30
|
|
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path("summary/", Sensor7In1SummaryView.as_view(), name="sensor-7-in-1-summary"),
|
|
|
|
|
]
|