forked from TrueCloudLab/frostfs-node
Alexander Chuprov
033eaf77e1
Standardize the alias of the import frostfs-sdk-go/object as objectSDK. Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
13 lines
306 B
Go
13 lines
306 B
Go
package object
|
|
|
|
import (
|
|
objectSDK "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 objectSDK.Type
|
|
}
|