diff --git a/app/main.py b/app/main.py index 62e0d5e..aa339c6 100644 --- a/app/main.py +++ b/app/main.py @@ -2,10 +2,14 @@ app = FastAPI() + @app.get("/") def status(): return {"status": "ok"} + @app.get("/about") def read_root(): - return {"title": "Building a GitOps structure with GitHub, Actions, DockerHub, and Helm Repository"} + return { + "title": "Building a GitOps structure with GitHub, Actions, DockerHub, and Helm Repository" + }