1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/client/buffer.go

15 lines
141 B
Go
Raw Normal View History

2015-01-14 01:31:27 +02:00
package client
import (
"bytes"
2015-01-14 01:31:27 +02:00
)
type buffer struct {
*bytes.Buffer
2015-01-14 01:31:27 +02:00
}
func (b *buffer) Close() error {
b.Buffer.Reset()
2015-01-14 01:31:27 +02:00
return nil
}