1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-12-24 10:07:04 +02:00
go-micro/server/buffer.go
2015-01-13 23:31:27 +00:00

15 lines
127 B
Go

package server
import (
"io"
)
type buffer struct {
io.Reader
io.Writer
}
func (b *buffer) Close() error {
return nil
}