15 lines
127 B
Go
15 lines
127 B
Go
|
package server
|
||
|
|
||
|
import (
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type buffer struct {
|
||
|
io.Reader
|
||
|
io.Writer
|
||
|
}
|
||
|
|
||
|
func (b *buffer) Close() error {
|
||
|
return nil
|
||
|
}
|