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