Skip to content

Commit

Permalink
lint: run lint tool black in folder app
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardo854 committed Oct 6, 2023
1 parent 64636c6 commit cc8b676
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

0 comments on commit cc8b676

Please sign in to comment.