mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-19 12:58:29 +00:00
6 lines
175 B
Python
6 lines
175 B
Python
from django.conf.urls.defaults import *
|
|
from apps.push import views
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^(?P<push_id>\d+)/?$', views.push_callback, name='push-callback'),
|
|
)
|