forked from TrueCloudLab/frostfs-node
7c081e4f15
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
7 lines
169 B
Go
7 lines
169 B
Go
package netmap
|
|
|
|
// State groups current system state parameters.
|
|
type State interface {
|
|
// CurrentEpoch returns number of current NeoFS epoch.
|
|
CurrentEpoch() uint64
|
|
}
|