(w http.ResponseWriter, r *http.Request)
| 276 | } |
| 277 | |
| 278 | func (s *Server) HeadHandler(w http.ResponseWriter, r *http.Request) *appError { |
| 279 | return &appError{ |
| 280 | Code: http.StatusNoContent, |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | func (s *Server) PortHandler(w http.ResponseWriter, r *http.Request) *appError { |
| 285 | response, err := s.newPortResponse(r) |
nothing calls this directly
no outgoing calls
no test coverage detected