13 lines
281 B
Go
13 lines
281 B
Go
package object
|
|
|
|
import (
|
|
"github.com/TrueCloudLab/frostfs-sdk-go/object"
|
|
oid "github.com/TrueCloudLab/frostfs-sdk-go/object/id"
|
|
)
|
|
|
|
// AddressWithType groups object address with its FrostFS
|
|
// object type.
|
|
type AddressWithType struct {
|
|
Address oid.Address
|
|
Type object.Type
|
|
}
|