frostfs-node/pkg/local_object_storage/blobstor/common/exists.go
Evgenii Stratonikov ca15083a50 [#1523] local_object_storage: Unify parameters for the Exists operation
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
2022-08-22 13:14:19 +03:00

13 lines
279 B
Go

package common
import oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
// ExistsPrm groups the parameters of Exists operation.
type ExistsPrm struct {
Address oid.Address
}
// ExistsRes groups the resulting values of Exists operation.
type ExistsRes struct {
Exists bool
}