2026-04-05 00:57:25 +03:30
|
|
|
from django.urls import path
|
|
|
|
|
|
2026-04-05 03:33:23 +03:30
|
|
|
from .views import SensorExternalAPIView, SensorExternalRequestLogListAPIView
|
2026-04-05 00:57:25 +03:30
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path("", SensorExternalAPIView.as_view(), name="sensor-external-api"),
|
2026-04-05 03:33:23 +03:30
|
|
|
path("logs/", SensorExternalRequestLogListAPIView.as_view(), name="sensor-external-api-log-list"),
|
2026-04-05 00:57:25 +03:30
|
|
|
]
|