Files
Backend/device_hub/sensor_external_api_urls.py
T

10 lines
306 B
Python
Raw Normal View History

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
]
2026-05-05 00:56:05 +03:30