Files
learn-cicd-starter/handler_ready.go
2023-05-30 21:28:23 -06:00

8 lines
169 B
Go

package main
import "net/http"
func handlerReadiness(w http.ResponseWriter, r *http.Request) {
respondWithJSON(w, http.StatusOK, map[string]string{"status": "ok"})
}