forked from TrueCloudLab/frostfs-node
18 lines
441 B
Go
18 lines
441 B
Go
|
package deletesvc
|
||
|
|
||
|
import (
|
||
|
"github.com/nspcc-dev/neofs-api-go/pkg/container"
|
||
|
objectSDK "github.com/nspcc-dev/neofs-api-go/pkg/object"
|
||
|
"github.com/nspcc-dev/neofs-api-go/pkg/owner"
|
||
|
"github.com/nspcc-dev/neofs-node/pkg/core/object"
|
||
|
)
|
||
|
|
||
|
func newTombstone(ownerID *owner.ID, cid *container.ID) *object.RawObject {
|
||
|
obj := object.NewRaw()
|
||
|
obj.SetContainerID(cid)
|
||
|
obj.SetOwnerID(ownerID)
|
||
|
obj.SetType(objectSDK.TypeTombstone)
|
||
|
|
||
|
return obj
|
||
|
}
|