2026-04-11 03:54:15 +03:30
|
|
|
from django.urls import path
|
|
|
|
|
|
2026-04-27 00:40:59 +03:30
|
|
|
from .views import CropHealthSummaryView, NdviHealthView
|
2026-04-11 03:54:15 +03:30
|
|
|
|
|
|
|
|
urlpatterns = [
|
2026-04-27 00:40:59 +03:30
|
|
|
path("ndvi-health/", NdviHealthView.as_view(), name="crop-health-ndvi-health"),
|
2026-04-11 03:54:15 +03:30
|
|
|
path("summary/", CropHealthSummaryView.as_view(), name="crop-health-summary"),
|
|
|
|
|
]
|