7 lines
183 B
Go
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
|
|
}
|