14 lines
361 B
Python
14 lines
361 B
Python
|
|
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",
|
||
|
|
),
|
||
|
|
]
|