"""Main routes for the application.""" from flask import Blueprint bp = Blueprint("main", __name__) @bp.route("/health") def health() -> dict[str, str]: """Health check endpoint.""" return {"status": "ok"}