backend/passfinder/events/api/urls.py

11 lines
287 B
Python
Raw Normal View History

2023-05-21 20:46:07 +03:00
from django.urls import path
2023-05-23 00:33:04 +03:00
from passfinder.events.api.views import BuildRouteApiView, ListRegionApiView
2023-05-21 20:46:07 +03:00
app_name = "events"
urlpatterns = [
2023-05-23 00:33:04 +03:00
path("route/build", BuildRouteApiView.as_view(), name="build_route"),
path("regions", ListRegionApiView.as_view(), name="regions"),
2023-05-21 20:46:07 +03:00
]