Skip to content

Commit

Permalink
check deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
sanchitrk committed Dec 8, 2024
1 parent 94ae9ad commit 264e123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/adapters/handler/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ func handleGetIndex(w http.ResponseWriter, _ *http.Request) {
tm := time.Now().UTC().Format(time.RFC1123)
w.Header().Set("x-datetime", tm)
w.WriteHeader(http.StatusOK)
_, err := w.Write([]byte("ok"))
_, err := w.Write([]byte("OK\n"))
if err != nil {
return
}
Expand Down

0 comments on commit 264e123

Please sign in to comment.