(contenttype string)
| 72 | } |
| 73 | |
| 74 | func (r *Response) SetContentType(contenttype string) { |
| 75 | r.SetHeader(HeaderContentType, contenttype) |
| 76 | } |
| 77 | |
| 78 | func (r *Response) SetStatusCode(code int) error { |
| 79 | return r.WriteHeader(code) |
no test coverage detected