11 lines
175 B
Go
11 lines
175 B
Go
|
package main
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
type healthCheckHandler struct {
|
||
|
}
|
||
|
|
||
|
func (h *healthCheckHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
||
|
w.Write([]byte("ok"))
|
||
|
}
|