9 lines
311 B
Python
9 lines
311 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('', views.GlobalSearchView.as_view(), name='global-search'),
|
|
path('suggestions/', views.SearchSuggestionsView.as_view(), name='search-suggestions'),
|
|
path('hot-keywords/', views.HotKeywordsView.as_view(), name='hot-keywords'),
|
|
]
|