This commit is contained in:
Slipstream 2025-05-09 17:47:01 -06:00
parent 561bff3dda
commit 5300c059c4
Signed by: slipstream
GPG Key ID: 13E498CE010AC6FD

View File

@ -520,7 +520,7 @@ app.mount("/dashboard/api", dashboard_api_app) # Mount the new dashboard API
# Import and mount webhook endpoints # Import and mount webhook endpoints
try: try:
from webhook_endpoints import router as webhook_router # Relative import from api_service.webhook_endpoints import router as webhook_router # Relative import
app.mount("/webhook", webhook_router) # Mount directly on the main app for simplicity app.mount("/webhook", webhook_router) # Mount directly on the main app for simplicity
# After mounting the webhook router # After mounting the webhook router
log.info("Available routes in webhook_router:") log.info("Available routes in webhook_router:")