mirror of
https://github.com/LBRYFoundation/reflector.go.git
synced 2025-09-01 17:45:10 +00:00
7 lines
127 B
Go
7 lines
127 B
Go
package store
|
|
|
|
type BlobStore interface {
|
|
Has(string) (bool, error)
|
|
Get(string) ([]byte, error)
|
|
Put(string, []byte) error
|
|
}
|