This commit is contained in:
ondal 2025-06-17 12:52:02 +09:00
parent 3d3f1e5383
commit 708ca29562

View File

@ -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
)
)
if __name__ == "__main__":
import uvicorn
uvicorn.run(app, host=settings.HOST, port=settings.PORT)