FastAPI - Middleware and Hooks
Identify the error in this lifespan context manager code?
async def lifespan(app: FastAPI):
print('Start')
yield 123
print('Stop')