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

9 lines
104 B
Python

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