Files
SensorHub/config/urls.py
T

11 lines
286 B
Python
Raw Normal View History

2026-02-19 17:54:50 +03:30
from django.contrib import admin
from django.urls import include, path
2026-04-05 00:57:50 +03:30
from ingest.views import SensorSimulatorAppView
2026-02-19 17:54:50 +03:30
urlpatterns = [
path("admin/", admin.site.urls),
2026-04-05 00:57:50 +03:30
path("", SensorSimulatorAppView.as_view(), name="home"),
2026-03-25 01:54:43 +03:30
path("api/ingest/", include("ingest.urls")),
2026-02-19 17:54:50 +03:30
]