forked from TrueCloudLab/frostfs-node
7ccd1625af
Remove `Object` and `RawObject` types from `pkg/core/object` package. Use `Object` type from NeoFS SDK Go library everywhere. Avoid using the deprecated elements. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
21 lines
443 B
Go
21 lines
443 B
Go
package v2
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/engine"
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
|
objectSDKAddress "github.com/nspcc-dev/neofs-sdk-go/object/address"
|
|
)
|
|
|
|
type localStorage struct {
|
|
ls *engine.StorageEngine
|
|
}
|
|
|
|
func (s *localStorage) Head(addr *objectSDKAddress.Address) (*object.Object, error) {
|
|
if s.ls == nil {
|
|
return nil, io.ErrUnexpectedEOF
|
|
}
|
|
|
|
return engine.Head(s.ls, addr)
|
|
}
|