Backend/config/api_router.py

5 lines
135 B
Python
Raw Permalink Normal View History

2023-02-19 04:46:51 +03:00
from django.urls import include, path
2023-02-18 17:44:52 +03:00
app_name = "api"
2023-02-19 04:46:51 +03:00
urlpatterns = [path("search/", include("real_estate_search.search.api.urls"))]