6 lines
190 B
Python
6 lines
190 B
Python
from django.urls import path
|
|
from .views import CreateCheckoutSessionView
|
|
|
|
urlpatterns = [
|
|
path("orders/create-checkout/", CreateCheckoutSessionView.as_view(), name="create-checkout"),
|
|
] |