This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
jos/app/__main__.py

10 lines
110 B
Python
Raw Normal View History

2021-05-18 11:45:44 +02:00
from quart import Quart
app = Quart("jos")
@app.route("/")
async def hello():
return "hello"
app.run()