From 708ca2956274b0bce168104eb4366de55d66b0dd Mon Sep 17 00:00:00 2001 From: ondal Date: Tue, 17 Jun 2025 12:52:02 +0900 Subject: [PATCH] release --- vector/app/main.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vector/app/main.py b/vector/app/main.py index fa9a769..ecaab0c 100644 --- a/vector/app/main.py +++ b/vector/app/main.py @@ -671,10 +671,6 @@ async def health_check(): "initialization_errors": app_state["initialization_errors"] } -if __name__ == "__main__": - import uvicorn - uvicorn.run(app, host=settings.HOST, port=settings.PORT) - @app.get( "/store/{store_id}", response_model=StoreInfoResponse, @@ -732,4 +728,8 @@ async def get_store_info( message=f"매장 정보 조회 중 오류 발생: {str(e)}", store_id=store_id, execution_time=execution_time - ) \ No newline at end of file + ) + +if __name__ == "__main__": + import uvicorn + uvicorn.run(app, host=settings.HOST, port=settings.PORT)