12 lines
164 B
Go
12 lines
164 B
Go
|
|
package handler
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
)
|
||
|
|
|
||
|
|
func handleHealthz(w http.ResponseWriter, r *http.Request) {
|
||
|
|
writeJSON(w, 200, map[string]string{
|
||
|
|
"status": "ok",
|
||
|
|
})
|
||
|
|
}
|