15 lines
139 B
Go
Raw Permalink Normal View History

2017-01-01 18:39:05 +00:00
package http
import (
"bytes"
)
type buffer struct {
*bytes.Buffer
}
func (b *buffer) Close() error {
b.Buffer.Reset()
return nil
}