From de8f5707dfd8840df58742413f92b64925bed02e Mon Sep 17 00:00:00 2001 From: dvirlabs Date: Fri, 13 Jun 2025 18:39:32 +0300 Subject: [PATCH] Trigger the pipeline --- backend/main.py | 3 +++ frontend/src/App.jsx | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index fb05c7b..afd8992 100644 --- a/backend/main.py +++ b/backend/main.py @@ -22,6 +22,9 @@ BASE_URL = "https://s3.dvirlabs.com/lab-icons" S3_INDEX_URL = "https://s3.dvirlabs.com/lab-icons/?list-type=2" DATA_FILE = "diagram.json" +@app.get("/") +def root(): + return {"message": "API is running"} @app.get("/diagram/fetch") def fetch_diagram(): diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 30a168e..535e505 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -4,4 +4,4 @@ function App() { return ; } -export default App; +export default App; \ No newline at end of file