Added basic starter app
This commit is contained in:
parent
5806c696e3
commit
12c1a2d206
2 changed files with 12 additions and 2 deletions
|
|
@ -0,0 +1,9 @@
|
|||
from quart import Quart
|
||||
|
||||
app = Quart("jos")
|
||||
|
||||
@app.route("/")
|
||||
async def hello():
|
||||
return "hello"
|
||||
|
||||
app.run()
|
||||
Reference in a new issue