memory comparison benchmark

This commit is contained in:
Miguel Grinberg
2022-08-07 12:31:21 +01:00
parent 09dc3ef7aa
commit d090bbf8e2
13 changed files with 235 additions and 1 deletions

View File

@@ -0,0 +1,11 @@
from microdot_asyncio import Microdot
app = Microdot()
@app.get('/')
async def index(req):
return {'hello': 'world'}
app.run()