reflector.go/store/store.go
Alex Grintsvayg 32a27c4e4d new errors.go
2018-03-01 16:28:25 -05:00

12 lines
252 B
Go

package store
import "github.com/lbryio/lbry.go/errors"
type BlobStore interface {
Has(string) (bool, error)
Get(string) ([]byte, error)
Put(string, []byte) error
PutSD(string, []byte) error
}
var ErrBlobNotFound = errors.Base("blob not found")