You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
318 B
Python
9 lines
318 B
Python
from django.urls import path
|
|
from api import views
|
|
|
|
urlpatterns = [
|
|
path('client/', views.client, name='api-client'),
|
|
path('temperature/', views.temperature, name='api-temperature'),
|
|
path('moisture/', views.moisture, name='api-moisture'),
|
|
path('waterlevel/', views.waterlevel, name='api-waterlevel'),
|
|
] |