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

9 lines
115 B
Python

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