forked from TrueCloudLab/frostfs-node
dadfd90dcd
Initial public review release v0.10.0
15 lines
320 B
Go
15 lines
320 B
Go
package container
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/container"
|
|
"github.com/nspcc-dev/neofs-api-go/refs"
|
|
)
|
|
|
|
// CID is a type alias of CID.
|
|
type CID = refs.CID
|
|
|
|
// OwnerID is a type alias of OwnerID.
|
|
type OwnerID = refs.OwnerID
|
|
|
|
// Container is a type alias of Container.
|
|
type Container = container.Container
|