11 lines
251 B
Go
11 lines
251 B
Go
package handler
|
|
|
|
import "net/http"
|
|
|
|
func Health(w http.ResponseWriter, _ *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
if _, err := w.Write([]byte("OK")); err != nil {
|
|
http.Error(w, "failed to write response", http.StatusInternalServerError)
|
|
}
|
|
}
|