package webService
import (
"fmt"
"net/http"
)
func (s *WebService) Ping(w http.ResponseWriter, r *http.Request) {
_, _ = fmt.Fprintf(w, "alive")
}