10 lines
276 B
Python
10 lines
276 B
Python
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"),
|
|
]
|