mirror of
https://github.com/get-drexa/drive.git
synced 2025-12-01 05:51: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")
|
|
)
|