core/internal/server/healthcheck.go (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
package server import ( "encoding/json" "log" "net/http" ) func (s *Server) HelloWorldHandler(w http.ResponseWriter, r *http.Request) { resp := make(map[string]string) resp["message"] = "Hello World" jsonResp, err := json.Marshal(resp) if err != nil { log.Fatalf("error handling JSON marshal. Err: %v", err) } _, _ = w.Write(jsonResp) } func (s *Server) healthHandler(w http.ResponseWriter, r *http.Request) { jsonResp, err := json.Marshal(s.db.Health()) if err != nil { log.Fatalf("error handling JSON marshal. Err: %v", err) } // set header to application/json w.Header().Set("Content-Type", "application/json") // encode the response _, _ = w.Write(jsonResp) } |