8 lines
189 B
Python
8 lines
189 B
Python
from django.urls import path
|
|
|
|
from .views import FertilizationRecommendView
|
|
|
|
urlpatterns = [
|
|
path("recommend/", FertilizationRecommendView.as_view(), name="fertilization-recommend"),
|
|
]
|