From 8b0ef7563ca26404314617617c63412b936c70a5 Mon Sep 17 00:00:00 2001 From: MAGICX Date: Tue, 3 Dec 2024 22:51:24 +0500 Subject: [PATCH] chore(backend): rm alert for startup and shutdown from lifespan --- backend/main.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/backend/main.py b/backend/main.py index 0b6c4b5..3b8deda 100644 --- a/backend/main.py +++ b/backend/main.py @@ -10,13 +10,8 @@ @asynccontextmanager async def lifespan(app: FastAPI): await init_db() - print("⚠ Application startup complete.") - yield - print("⚠ Application shutdown complete.") - - app = FastAPI( title=settings.PROJECT_NAME, version=settings.VERSION,