mirror of
https://github.com/BlackWallTeam/Backend.git
synced 2024-11-26 10:33:43 +03:00
11 lines
253 B
Python
11 lines
253 B
Python
|
from django.urls import path
|
||
|
|
||
|
from real_estate_search.search.api.views import PrimaryFlatList, SecondaryFlatList
|
||
|
|
||
|
app_name = "search"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path("primary", PrimaryFlatList.as_view()),
|
||
|
path("secondary", SecondaryFlatList.as_view()),
|
||
|
]
|