Files

10 lines
276 B
Python
Raw Permalink Normal View History

2026-04-25 17:22:41 +03:30
from django.urls import path
2026-04-29 23:54:30 +03:30
from .views import PestDiseaseDetectionView, PestDiseaseRiskView
2026-04-25 17:22:41 +03:30
urlpatterns = [
path("detect/", PestDiseaseDetectionView.as_view(), name="pest-disease-detect"),
path("risk/", PestDiseaseRiskView.as_view(), name="pest-disease-risk"),
]