11 lines
286 B
Python
11 lines
286 B
Python
|
|
from django.contrib import admin
|
||
|
|
from django.urls import include, path
|
||
|
|
|
||
|
|
from ingest.views import SensorSimulatorAppView
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("admin/", admin.site.urls),
|
||
|
|
path("", SensorSimulatorAppView.as_view(), name="home"),
|
||
|
|
path("api/ingest/", include("ingest.urls")),
|
||
|
|
]
|