Compare commits

..

No commits in common. "92f76c5f33d70653a5363d699b90f1e9cc2047bf" and "2076b4b35bf00549782d39d8f39a0674d708480a" have entirely different histories.

View file

@ -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 {