system-prompts-and-models-o.../salesflow-saas/backend/app/api/v1/webhooks/__init__.py

13 lines
352 B
Python

"""
Webhooks Entry Point — Financial Neural Link for Dealix.
Exports the sub-routers for payment confirmation and bank events.
"""
from fastapi import APIRouter
from app.api.v1.webhooks import payments
router = APIRouter()
# Include the payments webhook router
router.include_router(payments.router, prefix="/payments", tags=["Payment Webhooks"])