Tesis 1.0.0
Loading...
Searching...
No Matches
urls.py
Go to the documentation of this file.
1from django.urls import path
2
3# Importar vistas desde views.py
4from . import views
5from .views import PaymentSuccessView
6
7app_name = 'payment_service'
8
9urlpatterns = [
10 path('create-preference/', views.CreatePreferenceView.as_view(), name='create-preference'),
11 path('webhook/', views.WebhookView.as_view(), name='webhook'),
12 path('success/', PaymentSuccessView.as_view(), name='payment-success'),
13]