mirror of
https://github.com/pacnpal/django-anymail.git
synced 2025-12-20 11:51:05 -05:00
12 lines
242 B
Python
12 lines
242 B
Python
try:
|
|
from django.conf.urls import url
|
|
except ImportError:
|
|
from django.conf.urls.defaults import url
|
|
|
|
from .views import DjrillWebhookView
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^webhook/$', DjrillWebhookView.as_view(), name='djrill_webhook'),
|
|
]
|