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

9 lines
110 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get('/')
async def index():
return {'hello': 'world'}