forked from TrueCloudLab/frostfs-node
fe09cd9c70
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
13 lines
269 B
Go
13 lines
269 B
Go
package object
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
)
|
|
|
|
// AddressWithType groups object address with its NeoFS
|
|
// object type.
|
|
type AddressWithType struct {
|
|
Address oid.Address
|
|
Type object.Type
|
|
}
|