frostfs-node/lib/implementations/epoch.go

8 lines
167 B
Go
Raw Normal View History

package implementations
// EpochReceiver is an interface of the container
// of NeoFS epoch number with read access.
type EpochReceiver interface {
Epoch() uint64
}