Files
WhereToGo/wheretogo/maps/urls.py
2022-04-21 15:28:52 +03:00

9 lines
147 B
Python

from django.urls import path
from maps.views import MapView
app_name = "maps"
urlpatterns = [
path("map/", MapView.as_view(), name="map"),
]