William Petit
a5c67c29d0
Some checks failed
arcad/edge/pipeline/head There was a failure building this commit
9 lines
94 B
Go
9 lines
94 B
Go
package zim
|
|
|
|
import "io"
|
|
|
|
type BlobReader interface {
|
|
io.ReadCloser
|
|
Size() (int64, error)
|
|
}
|