mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
6 lines
126 B
Python
6 lines
126 B
Python
from django.urls import path
|
|
from .views import LandmarkListView
|
|
|
|
urlpatterns = [
|
|
path('', LandmarkListView.as_view()),
|
|
]
|