discord-bot / keepalive.py
xcx0902's picture
Upload folder using huggingface_hub
3ed8626 verified
raw
history blame
200 Bytes
from fastapi import FastAPI
import uvicorn
app = FastAPI()
@app.get("/")
def root():
return {"Hello": "World"}
def keepalive():
uvicorn.run(app=app, host="0.0.0.0", port="7860")