Files
chunyu_project/search/urls.py
T
2026-08-05 23:59:15 +08:00

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'),
]