from quart import Quart
app = Quart("jos")
@app.route("/")
async def hello():
return "hello"
app.run(host="0.0.0.0")