mirror of
https://github.com/Hopiu/django-watson.git
synced 2026-05-12 23:33:10 +00:00
12 lines
No EOL
240 B
Python
12 lines
No EOL
240 B
Python
"""URLs for the built-in site search functionality."""
|
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
|
|
urlpatterns = patterns("watson.views",
|
|
|
|
url("^$", "search", name="search"),
|
|
|
|
url("^json/$", "search_json", name="search_json"),
|
|
|
|
) |