mirror of
https://github.com/vbatts/tar-split.git
synced 2024-11-26 17:55:40 +00:00
WIP
This commit is contained in:
parent
8a361ef0d8
commit
59dedb67c5
1 changed files with 10 additions and 0 deletions
10
tar/asm/seek.go
Normal file
10
tar/asm/seek.go
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
package asm
|
||||||
|
|
||||||
|
import "io"
|
||||||
|
|
||||||
|
// ReadSeekCloser implements Read(), Seek() and Close()
|
||||||
|
type ReadSeekCloser interface {
|
||||||
|
io.Reader
|
||||||
|
io.Seeker
|
||||||
|
io.Closer
|
||||||
|
}
|
Loading…
Reference in a new issue