frostfs-api-go/bootstrap/service.go
Evgeniy Kulikov 1cf33e5ffd
initial
2019-11-18 16:34:06 +03:00

11 lines
245 B
Go

package bootstrap
import (
"github.com/nspcc-dev/neofs-proto/service"
)
// NodeType type alias.
type NodeType = service.NodeRole
// SetTTL sets ttl to Request to satisfy TTLRequest interface.
func (m *Request) SetTTL(v uint32) { m.TTL = v }