backend/passfinder/events/api/urls.py

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")
]