9 lines
220 B
Python
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'),
|
|
]
|