mirror of
https://github.com/Llloooggg/WhereToGo.git
synced 2026-03-06 04:36:22 +03:00
9 lines
147 B
Python
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"),
|
|
]
|