2025-12-18 13:47:00 +00:00

9 lines
220 B
Python

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'),
]