mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47: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>
13 lines
348 B
Python
13 lines
348 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"events.go",
|
|
"notifier.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/core/feed/state",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = ["//shared/event:go_default_library"],
|
|
)
|