StudE-Backend/stude/landmarks/urls.py

7 lines
126 B
Python
Raw Normal View History

from django.urls import path
from .views import LandmarkListView
urlpatterns = [
path('', LandmarkListView.as_view()),
]