mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 20:29:26 +08:00
9 lines
223 B
Python
9 lines
223 B
Python
|
from django.urls import path
|
||
|
from payments import views
|
||
|
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('checkout_session/', views.StripeCheckoutView.as_view()),
|
||
|
path('webhook/', views.stripe_webhook_view, name='Stripe Webhook'),
|
||
|
]
|