mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
7 lines
156 B
Python
7 lines
156 B
Python
from django.conf.urls import *
|
|
|
|
from apps.push import views
|
|
|
|
urlpatterns = [
|
|
url(r"^(?P<push_id>\d+)/?$", views.push_callback, name="push-callback"),
|
|
]
|