forked from TrueCloudLab/frostfs-node
dadfd90dcd
Initial public review release v0.10.0
7 lines
167 B
Go
7 lines
167 B
Go
package implementations
|
|
|
|
// EpochReceiver is an interface of the container
|
|
// of NeoFS epoch number with read access.
|
|
type EpochReceiver interface {
|
|
Epoch() uint64
|
|
}
|