mirror of
https://github.com/escalante29/WealthySmart.git
synced 2026-05-19 08:48:48 +02:00
All checks were successful
Deploy to VPS / deploy (push) Successful in 48s
Backend: parse BAC pension statement PDFs (VOL, ROP, FCL) via pdftotext, store snapshots with duplicate detection, reject credit card statements. Endpoints: POST /upload, GET /snapshots, GET /fund-summary. Frontend: wire up drag-and-drop upload, load real balances and rendimientos from API, show upload results with error/duplicate feedback. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
33 lines
891 B
Python
33 lines
891 B
Python
from fastapi import APIRouter
|
|
|
|
from app.api.v1.endpoints import (
|
|
accounts,
|
|
analytics,
|
|
auth,
|
|
budget,
|
|
categories,
|
|
exchange_rate,
|
|
import_transactions,
|
|
notifications,
|
|
pensions,
|
|
salarios,
|
|
settings,
|
|
tokens,
|
|
transactions,
|
|
)
|
|
|
|
api_router = APIRouter(prefix="/api/v1")
|
|
api_router.include_router(auth.router)
|
|
api_router.include_router(accounts.router)
|
|
api_router.include_router(categories.router)
|
|
api_router.include_router(transactions.router)
|
|
api_router.include_router(import_transactions.router)
|
|
api_router.include_router(exchange_rate.router)
|
|
api_router.include_router(tokens.router)
|
|
api_router.include_router(analytics.router)
|
|
api_router.include_router(settings.router)
|
|
api_router.include_router(budget.router)
|
|
api_router.include_router(notifications.router)
|
|
api_router.include_router(salarios.router)
|
|
api_router.include_router(pensions.router)
|