wagtail-longclaw/longclaw/checkout/urls.py

14 wiersze
310 B
Python

from django.conf.urls import url
from checkout import api
urlpatterns = [
url(r'shipping/$',
api.shipping_cost,
name='shipping'),
url(r'payment/$',
api.capture_payment,
name='payment'),
url(r'create_token/$',
api.create_token,
name='create_token')
]