mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
3e15e2fc1e
* Events * Notifiers * Refactor * Gaz * Fixed rest * Lint * Lint * Visibility * Typo * Typo * Apply suggestions from code review Co-Authored-By: Nishant Das <nishdas93@gmail.com>
9 lines
221 B
Go
9 lines
221 B
Go
package state
|
|
|
|
import "github.com/prysmaticlabs/prysm/shared/event"
|
|
|
|
// Notifier interface defines the methods of the service that provides state updates to consumers.
|
|
type Notifier interface {
|
|
StateFeed() *event.Feed
|
|
}
|