13 lines
319 B
Go
13 lines
319 B
Go
|
package webui
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
func handleHealthz() http.Handler {
|
||
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||
|
w.Header().Set("Cache-Control", "no-store, no-cache")
|
||
|
w.Header().Set("Content-Type", "application/json")
|
||
|
w.WriteHeader(http.StatusOK)
|
||
|
_, _ = w.Write([]byte("{}"))
|
||
|
})
|
||
|
}
|