mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 12:19:24 +08:00
8 lines
223 B
Python
8 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'),
|
|
]
|