Files
Backend/crop_health/urls.py
T

8 lines
173 B
Python
Raw Normal View History

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