Files
Backend/sensor_external_api/urls.py
T
2026-04-05 03:33:23 +03:30

9 lines
305 B
Python

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"),
]