diff --git a/response.go b/response.go index 525023a..7c03b15 100644 --- a/response.go +++ b/response.go @@ -27,17 +27,6 @@ type header struct { val string } -// TODO add doc -func (rs *Response) BufferPDF(name string, b bytes.Buffer) *Response { - - if rs.isTerminated == false { - rs.HttpResponseWriter.Header().Add("Content-Type", "application/pdf") - rs.HttpResponseWriter.Header().Add("Content-Disposition", "attachment; filename="+name) - b.WriteTo(rs.HttpResponseWriter) - } - return rs -} - // TODO add doc func (rs *Response) Any(body any) *Response { if rs.isTerminated == false {