frostfs-node/pkg/core/netmap/state.go
Leonard Lyubich 7c081e4f15 [#60] core/netmap: Define interface of current network properties
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-10-22 11:54:08 +03:00

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
}