forked from TrueCloudLab/frostfs-node
16 lines
320 B
Go
16 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
|