Dashboard route — serves the savings dashboard HTML page.
Functions
dashboard
async
Serve the savings dashboard page.
Source code in src/openjarvis/server/dashboard.py
| @dashboard_router.get("/dashboard", response_class=HTMLResponse)
async def dashboard():
"""Serve the savings dashboard page."""
return HTMLResponse(content=DASHBOARD_HTML)
|