StudE-Backend/stude/landmarks/urls.py

6 lines
126 B
Python

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