# urls.py
from django.urls import path

from api.pay.views.stripe import CreateCheckoutSessionView, CreatePaymentIntentView

urlpatterns = [
    path('pay/', CreatePaymentIntentView.as_view(), name='create-payment-intent'),
    path('checkout/', CreateCheckoutSessionView.as_view(), name='create-checkout-session'),
]