forked from TrueCloudLab/frostfs-api-go
7 lines
169 B
Go
7 lines
169 B
Go
package service
|
|
|
|
// EpochRequest interface gives possibility to get or set epoch in RPC Requests.
|
|
type EpochRequest interface {
|
|
GetEpoch() uint64
|
|
SetEpoch(v uint64)
|
|
}
|