From be3e7f8cd8f7b6c7a88186d1e9f52ee02de0fb71 Mon Sep 17 00:00:00 2001 From: maxDorninger <97409287+maxDorninger@users.noreply.github.com> Date: Mon, 30 Jun 2025 14:14:20 +0200 Subject: [PATCH] format files --- media_manager/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/media_manager/main.py b/media_manager/main.py index a22d6f4..2f81674 100644 --- a/media_manager/main.py +++ b/media_manager/main.py @@ -288,6 +288,7 @@ except Exception as e: log.error(f"Error creating test directory: {e}") raise + @app.get("/", response_model={"message": str, "version": str}) async def hello_world(): """ @@ -295,5 +296,6 @@ async def hello_world(): """ return {"message": "Hello World!", "version": os.getenv("PUBLIC_VERSION")} + if __name__ == "__main__": uvicorn.run(app, host="127.0.0.1", port=5049, log_config=LOGGING_CONFIG)