(app: FastAPI)
| 49 | |
| 50 | @asynccontextmanager |
| 51 | async def lifespan(app: FastAPI): |
| 52 | logger.info("CI Multi-Agent Pipeline started") |
| 53 | yield |
| 54 | logger.info("CI Multi-Agent Pipeline shutting down") |
| 55 | |
| 56 | |
| 57 | app = FastAPI( |
nothing calls this directly
no outgoing calls
no test coverage detected