From 52a0ea0a1f123460ebaec8d2cd0e3eefa1b22939 Mon Sep 17 00:00:00 2001 From: jaehwang Date: Wed, 12 Nov 2025 09:33:33 +0900 Subject: [PATCH] =?UTF-8?q?=EC=98=A4=ED=83=88=EC=9E=90=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api-server/app/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api-server/app/main.py b/api-server/app/main.py index 260291a..5f4e93a 100644 --- a/api-server/app/main.py +++ b/api-server/app/main.py @@ -17,9 +17,9 @@ async def startup(): if 'blog_table'not in table_list: await sql.create_blog_table() - print("user_table created") + print("blog_table created") else: - print("user_table already exist") + print("blog_table already exist") @asynccontextmanager async def lifespan(app : FastAPI):