8 lines
173 B
Python
8 lines
173 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from .views import CropHealthSummaryView
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("summary/", CropHealthSummaryView.as_view(), name="crop-health-summary"),
|
||
|
|
]
|