Files

9 lines
323 B
Python
Raw Permalink Normal View History

2026-03-21 23:50:36 +03:30
from django.urls import path
2026-04-30 03:25:31 +03:30
from .views import FertilizationPlanParserView, FertilizationRecommendView
2026-03-21 23:50:36 +03:30
urlpatterns = [
path("recommend/", FertilizationRecommendView.as_view(), name="fertilization-recommend"),
2026-04-30 03:25:31 +03:30
path("plan-from-text/", FertilizationPlanParserView.as_view(), name="fertilization-plan-from-text"),
2026-03-21 23:50:36 +03:30
]