forked from TrueCloudLab/frostfs-node
923f84722a
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
14 lines
304 B
Go
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
|
|
}
|