micro-client-http/buffer.go
2021-01-10 14:47:02 +03:00

15 lines
139 B
Go

package http
import (
"bytes"
)
type buffer struct {
*bytes.Buffer
}
func (b *buffer) Close() error {
b.Buffer.Reset()
return nil
}