File size: 155 Bytes
a882be6 | 1 2 3 4 5 6 | """AWS Lambda entry-point. Wraps the FastAPI app with Mangum."""
from mangum import Mangum
from api.main import app
handler = Mangum(app, lifespan="off")
|
a882be6 | 1 2 3 4 5 6 | """AWS Lambda entry-point. Wraps the FastAPI app with Mangum."""
from mangum import Mangum
from api.main import app
handler = Mangum(app, lifespan="off")
|