frostfs-node/pkg/local_object_storage/blobstor/common/delete.go

16 lines
378 B
Go
Raw Normal View History

package common
import (
"github.com/nspcc-dev/neofs-node/pkg/local_object_storage/blobovnicza"
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
)
// DeletePrm groups the parameters of Delete operation.
type DeletePrm struct {
Address oid.Address
BlobovniczaID *blobovnicza.ID
}
// DeleteRes groups the resulting values of Delete operation.
type DeleteRes struct{}