File size: 259 Bytes
2e1e1ba
 
 
 
 
 
 
5b3a7a7
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: YouTubeLoader (Hydrogram + Webserver) running", 200

@bp.get("/health")
async def health():
    return {"ok": True}, 200