frostfs-node/pkg/services/object/acl/eacl/v2/localstore.go
Leonard Lyubich c0aa892161 [#136] localstorage: Make local storage to use new metabase
Replace meta Bucket with meta.DB instance in local storage implementation.
Adopt all dependent components to new local storage.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-11-03 18:42:32 +03:00

21 lines
426 B
Go

package v2
import (
"io"
objectSDK "github.com/nspcc-dev/neofs-api-go/pkg/object"
"github.com/nspcc-dev/neofs-node/pkg/core/object"
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/localstore"
)
type localStorage struct {
ls *localstore.Storage
}
func (s *localStorage) Head(addr *objectSDK.Address) (*object.Object, error) {
if s.ls == nil {
return nil, io.ErrUnexpectedEOF
}
return s.ls.Head(addr)
}