9 lines
145 B
Go
9 lines
145 B
Go
package handler
|
|
|
|
import "net/http"
|
|
|
|
func Health(w http.ResponseWriter, _ *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write([]byte("OK"))
|
|
}
|