forked from TrueCloudLab/frostfs-node
cc7a723d77
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
7 lines
181 B
Go
7 lines
181 B
Go
package netmap
|
|
|
|
// State groups the current system state parameters.
|
|
type State interface {
|
|
// CurrentEpoch returns the number of the current NeoFS epoch.
|
|
CurrentEpoch() uint64
|
|
}
|