11 lines
219 B
Go
11 lines
219 B
Go
package handler
|
|
|
|
import "net/http"
|
|
|
|
func (h *Handler) Ping(w http.ResponseWriter, r *http.Request) error {
|
|
w.Header().Set("Content-Type", "text/plain")
|
|
w.WriteHeader(http.StatusOK)
|
|
w.Write([]byte("."))
|
|
return nil
|
|
}
|