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

9 lines
121 B
Python

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