forked from TrueCloudLab/frostfs-node
Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
13 lines
293 B
Go
13 lines
293 B
Go
package object
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
|
oid "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
)
|
|
|
|
// AddressWithType groups object address with its FrostFS
|
|
// object type.
|
|
type AddressWithType struct {
|
|
Address oid.Address
|
|
Type object.Type
|
|
}
|