73f8bb3e5f
Allow to extend blobstor with more storage sub-systems. Currently objects stored in the FSTree have empty byte slice descriptor and object from blobovnicza tree have the same id as earlier. Each such change in the identifier formation should be accompanied with metabase version increase. Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
15 lines
247 B
Go
15 lines
247 B
Go
package common
|
|
|
|
import (
|
|
objectSDK "github.com/nspcc-dev/neofs-sdk-go/object"
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
)
|
|
|
|
type GetPrm struct {
|
|
Address oid.Address
|
|
StorageID []byte
|
|
}
|
|
|
|
type GetRes struct {
|
|
Object *objectSDK.Object
|
|
}
|