Spaces:
Runtime error
Runtime error
| from pathlib import Path | |
| from fastapi import APIRouter | |
| from fastapi.responses import FileResponse | |
| router = APIRouter(tags=["UI"]) | |
| def scorecard_console() -> FileResponse: | |
| return FileResponse(Path("app/static/index.html")) | |
| def generate_scorecard_console() -> FileResponse: | |
| return FileResponse(Path("app/static/index.html")) | |
| def simulate_scorecard_console() -> FileResponse: | |
| return FileResponse(Path("app/static/index.html")) | |