frostfs-node/pkg/core/netmap/state.go
Stanislav Bogatyrev cb016d53a6 [#1] Fix comments and error messages
Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
2023-02-06 17:41:14 +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
}