mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-15 06:26:34 +03:00
10 lines
201 B
Python
10 lines
201 B
Python
from django.urls import path
|
|
|
|
from passfinder.events.api.views import BuildRouteApiView
|
|
|
|
app_name = "events"
|
|
|
|
urlpatterns = [
|
|
path("route/build", BuildRouteApiView.as_view(), name="build_route")
|
|
]
|