forked from TrueCloudLab/frostfs-node
8 lines
167 B
Go
8 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
|
||
|
}
|