mirror of
https://github.com/go-micro/go-micro.git
synced 2025-03-29 20:39:48 +02:00
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
|
||
|
}
|