from django.urls import path from .views import PlantGrowthSimulationStatusView, PlantGrowthSimulationView urlpatterns = [ path("growth/", PlantGrowthSimulationView.as_view(), name="growth-simulation"), path( "growth//status/", PlantGrowthSimulationStatusView.as_view(), name="growth-simulation-status", ), ]