Files
The-Ouroboros/src/dashboard/__init__.py
agentson 63f4e49d88
Some checks failed
CI / test (pull_request) Has been cancelled
feat: read-only FastAPI dashboard with 7 API endpoints (issue #96)
Add observability dashboard: status, playbook, scorecard, performance,
context browser, decisions, and active scenarios endpoints.
SQLite read-only on separate connections from trading loop.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-14 23:56:10 +09:00

6 lines
144 B
Python

"""FastAPI dashboard package for observability APIs."""
from src.dashboard.app import create_dashboard_app
__all__ = ["create_dashboard_app"]