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):