9 lines
323 B
Python
9 lines
323 B
Python
from django.urls import path
|
|
from .views import CoasterSimulateView, CoasterListCreateView, CoasterDeleteView
|
|
|
|
urlpatterns = [
|
|
path("simulate/", CoasterSimulateView.as_view()),
|
|
path("challenges/<uuid:challenge_id>/coasters/", CoasterListCreateView.as_view()),
|
|
path("<uuid:pk>/", CoasterDeleteView.as_view()),
|
|
]
|