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

9 lines
115 B
Python

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