mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
10 lines
242 B
Python
Executable file
10 lines
242 B
Python
Executable file
from django.conf.urls import *
|
|
|
|
from zebra import views
|
|
|
|
app_name='zebra'
|
|
|
|
urlpatterns = [
|
|
url(r'webhooks/$', views.webhooks, name='webhooks'),
|
|
url(r'webhooks/v2/$', views.webhooks_v2, name='webhooks_v2'),
|
|
]
|