forked from TrueCloudLab/restic
Make ReadCloser public
This commit is contained in:
parent
04cd318f6c
commit
8d229bfd21
1 changed files with 5 additions and 0 deletions
|
@ -125,6 +125,11 @@ func memCreate(be *MemoryBackend) (Blob, error) {
|
|||
return blob, nil
|
||||
}
|
||||
|
||||
// ReadCloser wraps a reader and adds a noop Close method.
|
||||
func ReadCloser(rd io.Reader) io.ReadCloser {
|
||||
return readCloser{rd}
|
||||
}
|
||||
|
||||
// readCloser wraps a reader and adds a noop Close method.
|
||||
type readCloser struct {
|
||||
io.Reader
|
||||
|
|
Loading…
Reference in a new issue