frostfs-node/pkg/core/netmap/state.go
Stanislav Bogatyrev dacc483d00 [#1] Fix comments and error messages
Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
2023-02-06 17:37:25 +03:00

7 lines
183 B
Go

package netmap
// State groups the current system state parameters.
type State interface {
// CurrentEpoch returns the number of the current FrostFS epoch.
CurrentEpoch() uint64
}