Spaces:
Running
Running
File size: 200 Bytes
3ed8626 |
1 2 3 4 5 6 7 8 9 10 11 12 |
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") |