frostfs-node/pkg/local_object_storage/blobstor/common/exists.go
Pavel Karpy 923f84722a Move to frostfs-node
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
2022-12-28 15:04:29 +03:00

14 lines
304 B
Go

package common
import oid "github.com/TrueCloudLab/frostfs-sdk-go/object/id"
// ExistsPrm groups the parameters of Exists operation.
type ExistsPrm struct {
Address oid.Address
StorageID []byte
}
// ExistsRes groups the resulting values of Exists operation.
type ExistsRes struct {
Exists bool
}