1
0
Fork 1
mirror of https://github.com/vbatts/tar-split.git synced 2024-11-22 16:15:39 +00:00
This commit is contained in:
Vincent Batts 2015-09-24 11:17:57 -04:00
parent 8a361ef0d8
commit 59dedb67c5

10
tar/asm/seek.go Normal file
View file

@ -0,0 +1,10 @@
package asm
import "io"
// ReadSeekCloser implements Read(), Seek() and Close()
type ReadSeekCloser interface {
io.Reader
io.Seeker
io.Closer
}