Files

10 lines
276 B
Python
Raw Permalink Normal View History

2026-05-11 03:27:21 +03:30
from django.urls import path
from .views import PestDiseaseDetectionView, PestDiseaseRiskView
urlpatterns = [
path("detect/", PestDiseaseDetectionView.as_view(), name="pest-disease-detect"),
path("risk/", PestDiseaseRiskView.as_view(), name="pest-disease-risk"),
]