understanding's picture
Update bot/server/routes.py
5b3a7a7 verified
raw
history blame contribute delete
259 Bytes
# 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