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

12 lines
122 B
Python

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