Files
microdot/examples/benchmark/mem_asgi.py
Miguel Grinberg 20ea305fe7 v2 (#186)
2023-12-22 20:26:07 +00:00

9 lines
121 B
Python

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