Files
django-core-base/apps/promociones/urls.py
juanjo e5908b1880
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
endpoint de status
2026-04-12 22:38:49 +02:00

9 lines
255 B
Python

from django.urls import path
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'),
]