mirror of
https://github.com/Hopiu/django-watson.git
synced 2026-03-16 22:00:22 +00:00
14 lines
288 B
Python
14 lines
288 B
Python
"""URLs for the built-in site search functionality."""
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
|
|
from watson.views import search, search_json
|
|
|
|
urlpatterns = [
|
|
|
|
url("^$", search, name="search"),
|
|
url("^json/$", search_json, name="search_json"),
|
|
|
|
]
|