mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 23:09:35 +00:00
13 lines
352 B
Python
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"])
|