mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-11 17:18:28 +02:00
14 lines
120 B
Go
14 lines
120 B
Go
|
package client
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type buffer struct {
|
||
|
io.ReadWriter
|
||
|
}
|
||
|
|
||
|
func (b *buffer) Close() error {
|
||
|
return nil
|
||
|
}
|