mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
10 lines
265 B
Python
10 lines
265 B
Python
try:
|
|
from django.conf.urls import patterns, url
|
|
except ImportError:
|
|
from django.conf.urls.defaults import patterns, url
|
|
from haystack.views import SearchView
|
|
|
|
|
|
urlpatterns = patterns('haystack.views',
|
|
url(r'^$', SearchView(), name='haystack_search'),
|
|
)
|