mirror of
https://github.com/magnum-opus-tender-hack/backend.git
synced 2024-11-14 21:46:34 +03:00
9 lines
210 B
Python
9 lines
210 B
Python
from django.urls import path
|
|
|
|
from search.api.views import SearchApi, HintApi
|
|
|
|
urlpatterns = [
|
|
path("search", SearchApi.as_view(), name="search_api"),
|
|
path("hint", HintApi.as_view(), name="hint api")
|
|
]
|