frostfs-api-go/service/alias.go

21 lines
498 B
Go
Raw Normal View History

2020-04-28 10:09:18 +00:00
package service
import (
"github.com/nspcc-dev/neofs-api-go/refs"
)
// TokenID is a type alias of UUID ref.
2020-04-28 10:09:18 +00:00
type TokenID = refs.UUID
// OwnerID is a type alias of OwnerID ref.
2020-04-28 10:09:18 +00:00
type OwnerID = refs.OwnerID
// Address is a type alias of Address ref.
2020-04-28 10:09:18 +00:00
type Address = refs.Address
// AddressContainer is a type alias of refs.AddressContainer.
type AddressContainer = refs.AddressContainer
// OwnerIDContainer is a type alias of refs.OwnerIDContainer.
type OwnerIDContainer = refs.OwnerIDContainer