Files
microdot/examples/benchmark/mem_async.py
2022-08-07 12:42:41 +01:00

12 lines
136 B
Python

from microdot_asyncio import Microdot
app = Microdot()
@app.get('/')
async def index(req):
return {'hello': 'world'}
app.run()