frostfs-api-go/bootstrap/service.go

12 lines
245 B
Go
Raw Normal View History

2019-11-18 13:34:06 +00:00
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 }