(fmtString string, args ...interface{})
| 68 | } |
| 69 | |
| 70 | func unauthorizedError(fmtString string, args ...interface{}) *HTTPError { |
| 71 | return httpError(http.StatusUnauthorized, fmtString, args...) |
| 72 | } |
| 73 | |
| 74 | func forbiddenError(fmtString string, args ...interface{}) *HTTPError { |
| 75 | return httpError(http.StatusForbidden, fmtString, args...) |
no test coverage detected
searching dependent graphs…