ee751f88cd
paves the way for different back ends
14 lines
179 B
Go
14 lines
179 B
Go
package splitstore
|
|
|
|
import (
|
|
cid "github.com/ipfs/go-cid"
|
|
)
|
|
|
|
type LiveSet interface {
|
|
Mark(cid.Cid) error
|
|
Has(cid.Cid) (bool, error)
|
|
Close() error
|
|
}
|
|
|
|
var markBytes = []byte{}
|