mirror of
https://github.com/BlackWallTeam/Backend.git
synced 2024-11-10 19:06:33 +03:00
5 lines
135 B
Python
5 lines
135 B
Python
from django.urls import include, path
|
|
|
|
app_name = "api"
|
|
urlpatterns = [path("search/", include("real_estate_search.search.api.urls"))]
|