Spaces:
Runtime error
Runtime error
File size: 246 Bytes
2e1e1ba |
1 2 3 4 5 6 7 8 9 10 11 12 |
# PATH: bot/server/routes.py
from quart import Blueprint
bp = Blueprint("main", __name__)
@bp.get("/")
async def home():
return "OK: HF Webserver + Hydrogram running", 200
@bp.get("/health")
async def health():
return {"ok": True}, 200 |