Files
Ai/crop_simulation/urls.py
T

14 lines
361 B
Python
Raw Normal View History

2026-04-24 18:34:17 +03:30
from django.urls import path
from .views import PlantGrowthSimulationStatusView, PlantGrowthSimulationView
urlpatterns = [
path("growth/", PlantGrowthSimulationView.as_view(), name="growth-simulation"),
path(
"growth/<str:task_id>/status/",
PlantGrowthSimulationStatusView.as_view(),
name="growth-simulation-status",
),
]