frostfs-node/pkg/local_object_storage/blobstor/common/exists.go
Alex Vanin 20de74a505 Rename package name
Due to source code relocation from GitHub.

Signed-off-by: Alex Vanin <a.vanin@yadro.com>
2023-03-07 16:38:26 +03:00

14 lines
310 B
Go

package common
import oid "git.frostfs.info/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
}