backend/app/conf/api.py
2022-10-21 23:22:14 +03:00

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")
]