2026-03-21 23:50:36 +03:30
|
|
|
from django.urls import path
|
|
|
|
|
|
2026-04-24 02:50:27 +03:30
|
|
|
from .views import FertilizationRecommendView
|
2026-03-21 23:50:36 +03:30
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path("recommend/", FertilizationRecommendView.as_view(), name="fertilization-recommend"),
|
|
|
|
|
]
|