9 lines
112 B
Python
9 lines
112 B
Python
from quart import Quart
|
|
|
|
app = Quart(__name__)
|
|
|
|
|
|
@app.get('/')
|
|
async def index():
|
|
return {'hello': 'world'}
|