forked from TrueCloudLab/frostfs-api-go
15 lines
274 B
Go
15 lines
274 B
Go
|
package service
|
||
|
|
||
|
import (
|
||
|
"github.com/nspcc-dev/neofs-api-go/refs"
|
||
|
)
|
||
|
|
||
|
// TokenID is type alias of UUID ref.
|
||
|
type TokenID = refs.UUID
|
||
|
|
||
|
// OwnerID is type alias of OwnerID ref.
|
||
|
type OwnerID = refs.OwnerID
|
||
|
|
||
|
// Address is type alias of Address ref.
|
||
|
type Address = refs.Address
|