backend/app/conf/api.py

9 lines
210 B
Python
Raw Normal View History

2022-10-21 21:39:04 +03:00
from django.urls import path
2022-10-21 23:22:14 +03:00
from search.api.views import SearchApi, HintApi
2022-10-21 21:39:04 +03:00
urlpatterns = [
2022-10-21 23:22:14 +03:00
path("search", SearchApi.as_view(), name="search_api"),
path("hint", HintApi.as_view(), name="hint api")
2022-10-21 21:39:04 +03:00
]