mirror of
https://github.com/magnum-opus-tender-hack/backend.git
synced 2024-11-14 13:36:39 +03:00
10 lines
312 B
Python
10 lines
312 B
Python
from django.urls import path
|
|
|
|
from search.api.views import SearchApi, HintApi, AutoCompleteApi
|
|
|
|
urlpatterns = [
|
|
path("search", SearchApi.as_view(), name="search_api"),
|
|
path("hint", HintApi.as_view(), name="hint api"),
|
|
path('autocomplete_schema', AutoCompleteApi.as_view(), name='autocomplete api')
|
|
]
|