discord-bot / keepalive.py
xcx0902's picture
Upload folder using huggingface_hub
0962466 verified
raw
history blame
327 Bytes
from fastapi import FastAPI
from fastapi.responses import HTMLResponse
import os
keepalive = FastAPI()
@keepalive.get("/", response_class=HTMLResponse)
def root():
return "<html><body><p>This is the space for my discord bot (@xcx0902-bot)</p></body></html>"
os.system("python app.py 1>/dev/null 2>/dev/null &")