mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-19 21:05:13 +00:00
8 lines
185 B
Python
8 lines
185 B
Python
|
|
from django.conf.urls import *
|
||
|
|
from apps.search import views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
# url(r'^$', views.index),
|
||
|
|
url(r'^more_like_this', views.more_like_this, name='more-like-this'),
|
||
|
|
]
|