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