26 lines
481 B
Go
26 lines
481 B
Go
|
package state
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/ipfs/go-cid"
|
||
|
cbor "github.com/ipfs/go-ipld-cbor"
|
||
|
)
|
||
|
|
||
|
type contextStore struct {
|
||
|
ctx context.Context
|
||
|
cst *cbor.BasicIpldStore
|
||
|
}
|
||
|
|
||
|
func (cs *contextStore) Context() context.Context {
|
||
|
return cs.ctx
|
||
|
}
|
||
|
|
||
|
func (cs *contextStore) Get(ctx context.Context, c cid.Cid, out interface{}) error {
|
||
|
return cs.cst.Get(ctx, c, out)
|
||
|
}
|
||
|
|
||
|
func (cs *contextStore) Put(ctx context.Context, v interface{}) (cid.Cid, error) {
|
||
|
return cs.cst.Put(ctx, v)
|
||
|
}
|