edge/pkg/bundle/zim/blob_reader.go
William Petit a5c67c29d0
Some checks failed
arcad/edge/pipeline/head There was a failure building this commit
feat(bundle): add zim format support
2023-10-19 22:20:52 +02:00

9 lines
94 B
Go

package zim
import "io"
type BlobReader interface {
io.ReadCloser
Size() (int64, error)
}