mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 14:01:40 +00:00
10 lines
273 B
Go
10 lines
273 B
Go
package blob
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrConflict = errors.New("key already used for a different blob")
|
|
ErrNotFound = errors.New("key not found")
|
|
ErrInvalidFileContent = errors.New("invalid file content. must provide either a reader or a blob key")
|
|
)
|