from django.urls import path from . import views urlpatterns = [ path('webhook/', views.polar_webhook, name='polar_webhook'), path('checkout/', views.create_checkout_session, name='create_checkout_session'), ]