First
This commit is contained in:
13
client/buffer.go
Normal file
13
client/buffer.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package client
|
||||
|
||||
import (
|
||||
"io"
|
||||
)
|
||||
|
||||
type buffer struct {
|
||||
io.ReadWriter
|
||||
}
|
||||
|
||||
func (b *buffer) Close() error {
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user