# PATH: bot/server/routes.py from quart import Blueprint bp = Blueprint("main", __name__) @bp.get("/") async def home(): return "OK: YouTubeLoader (Hydrogram + Webserver) running", 200 @bp.get("/health") async def health(): return {"ok": True}, 200