mirror of
https://github.com/project-zot/zot.git
synced 2026-06-17 21:17:58 +08:00
2fb691cd3b
Signed-off-by: Vishwas Rajashekar <dev@vrajashkr.com>
11 lines
391 B
Go
11 lines
391 B
Go
package sync
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrReaderNotInitialized = errors.New("reader not initialized")
|
|
ErrManifestNotFoundOnDemandDisabl = errors.New("manifest not found in ondemand disabled")
|
|
ErrBlobNotFoundInActiveStreams = errors.New("blob not found in active streams")
|
|
ErrChunkingReaderNotInitialized = errors.New("chunking blob reader not initialized for this blob!")
|
|
)
|