All Downloads are FREE. Search and download functionalities are using the official Maven repository.

vendor.github.com.aws.smithy-go.io.reader.go Maven / Gradle / Ivy

The newest version!
package io

import (
	"io"
)

// ReadSeekNopCloser wraps an io.ReadSeeker with an additional Close method
// that does nothing.
type ReadSeekNopCloser struct {
	io.ReadSeeker
}

// Close does nothing.
func (ReadSeekNopCloser) Close() error {
	return nil
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy