func()

in main.go [130:134]


func (s *server) sendError(err error, w http.ResponseWriter) {
	s.l.Println(err)
	w.WriteHeader(http.StatusInternalServerError)
	fmt.Fprintf(w, "%s", err)
}