endpoint de status
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good

This commit is contained in:
juanjo
2026-04-12 22:38:49 +02:00
parent 1bf3337616
commit e5908b1880
3 changed files with 30 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
from django.urls import path
from .views import get_promocion_view
from .views import get_promocion_view, status_view
urlpatterns = [
# Capa 1: Definición del endpoint
path('obtener/', get_promocion_view, name='get_promocion'),
path('status/', status_view, name='api_status'),
]