Files
Logic/Modules/Backend/device_hub/sensor_external_api_urls.py
T

10 lines
306 B
Python
Raw Normal View History

2026-05-11 03:27:21 +03:30
from django.urls import path
from .views import SensorExternalAPIView, SensorExternalRequestLogListAPIView
urlpatterns = [
path("", SensorExternalAPIView.as_view(), name="sensor-external-api"),
path("logs/", SensorExternalRequestLogListAPIView.as_view(), name="sensor-external-api-log-list"),
]