Created
July 11, 2018 15:34
-
-
Save Ferada/d3cb772b571c5260f77a9784b2bd9c2f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ReadSeekerCloser combines a ReadSeeker with a Closer. Brilliant, isn't it. | |
type ReadSeekerCloser interface { | |
io.ReadSeeker | |
io.Closer | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment