mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 04:09:25 +08:00
7 lines
221 B
Python
7 lines
221 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"),
|
|
]
|