mirror of
https://github.com/gabehf/Koito.git
synced 2026-03-07 21:48:18 -08:00
10 lines
208 B
Go
10 lines
208 B
Go
package handlers
|
|
|
|
import "net/http"
|
|
|
|
func HealthHandler() http.HandlerFunc {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write([]byte(`{"status":"ready"}`))
|
|
}
|
|
}
|