mirror of
https://github.com/pretix/pretix.git
synced 2026-05-05 15:14:04 +00:00
11 lines
183 B
Python
11 lines
183 B
Python
from django.conf.urls import url, include
|
|
|
|
from .views import webhook
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^stripe/', include([
|
|
url(r'^webhook/$', webhook, name='webhook'),
|
|
])),
|
|
]
|