mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
9 lines
149 B
Go
9 lines
149 B
Go
|
|
package blob
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var (
|
||
|
|
ErrConflict = errors.New("key already used for a different blob")
|
||
|
|
ErrNotFound = errors.New("key not found")
|
||
|
|
)
|