Files
Backend/sensor_external_api/urls.py
T
2026-04-05 00:57:25 +03:30

8 lines
165 B
Python

from django.urls import path
from .views import SensorExternalAPIView
urlpatterns = [
path("", SensorExternalAPIView.as_view(), name="sensor-external-api"),
]