1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00
go-micro/transport/buffer.go

14 lines
123 B
Go
Raw Normal View History

2015-05-20 23:57:19 +02:00
package transport
import (
"io"
)
type buffer struct {
io.ReadWriter
}
func (b *buffer) Close() error {
return nil
}