(rw http.ResponseWriter)
| 160 | } |
| 161 | |
| 162 | func Forbidden(rw http.ResponseWriter) { |
| 163 | Write(context.Background(), rw, http.StatusForbidden, ResourceForbiddenResponse) |
| 164 | } |
| 165 | |
| 166 | func InternalServerError(rw http.ResponseWriter, err error) { |
| 167 | var details string |
no test coverage detected