frostfs-api-go/service/epoch.go

8 lines
169 B
Go
Raw Normal View History

2019-11-18 13:34:06 +00:00
package service
// EpochRequest interface gives possibility to get or set epoch in RPC Requests.
type EpochRequest interface {
GetEpoch() uint64
SetEpoch(v uint64)
}