mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
7 lines
169 B
Python
7 lines
169 B
Python
from django.conf.urls.defaults import *
|
|
from apps.analyzer import views
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^$', views.index),
|
|
(r'^save/?', views.save_classifier),
|
|
)
|