(w http.ResponseWriter, r *http.Request, httpStatusCode int)
| 1467 | } |
| 1468 | |
| 1469 | func httpStatusError(w http.ResponseWriter, r *http.Request, httpStatusCode int) { |
| 1470 | http.Error(w, fmt.Sprintf("%s [%d]", http.StatusText(httpStatusCode), httpStatusCode), httpStatusCode) |
| 1471 | return |
| 1472 | } |
| 1473 | |
| 1474 | func getContentType(filename string) (contentType string) { |
| 1475 |
no outgoing calls
no test coverage detected