forked from TrueCloudLab/frostfs-node
Add Inner Ring code
This commit is contained in:
parent
dadfd90dcd
commit
b7b5079934
400 changed files with 11420 additions and 8690 deletions
25
pkg/services/object_manager/transformer/alias.go
Normal file
25
pkg/services/object_manager/transformer/alias.go
Normal file
|
@ -0,0 +1,25 @@
|
|||
package transformer
|
||||
|
||||
import (
|
||||
"github.com/nspcc-dev/neofs-api-go/object"
|
||||
"github.com/nspcc-dev/neofs-api-go/refs"
|
||||
"github.com/nspcc-dev/neofs-api-go/storagegroup"
|
||||
)
|
||||
|
||||
type (
|
||||
// Object is a type alias of
|
||||
// Object from object package of neofs-api-go.
|
||||
Object = object.Object
|
||||
|
||||
// ObjectID is a type alias of
|
||||
// ObjectID from refs package of neofs-api-go.
|
||||
ObjectID = refs.ObjectID
|
||||
|
||||
// CID is a type alias of
|
||||
// CID from refs package of neofs-api-go.
|
||||
CID = refs.CID
|
||||
|
||||
// StorageGroup is a type alias of
|
||||
// StorageGroup from storagegroup package of neofs-api-go.
|
||||
StorageGroup = storagegroup.StorageGroup
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue