2026-02-25 12:21:53 +03:30
|
|
|
from django.urls import path
|
|
|
|
|
|
2026-03-27 18:18:31 +03:30
|
|
|
from .views import ConfigView, RecommendView
|
2026-02-25 12:21:53 +03:30
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path("config/", ConfigView.as_view(), name="irrigation-recommendation-config"),
|
|
|
|
|
path("recommend/", RecommendView.as_view(), name="irrigation-recommendation-recommend"),
|
|
|
|
|
]
|