9 lines
323 B
Python
9 lines
323 B
Python
|
|
from django.urls import path
|
||
|
|
|
||
|
|
from .views import FertilizationPlanParserView, FertilizationRecommendView
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
path("recommend/", FertilizationRecommendView.as_view(), name="fertilization-recommend"),
|
||
|
|
path("plan-from-text/", FertilizationPlanParserView.as_view(), name="fertilization-plan-from-text"),
|
||
|
|
]
|