mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 21:27:19 +00:00
11a1f681e0
* async packages * change pkg * build * working Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
16 lines
415 B
Python
16 lines
415 B
Python
load("@prysm//tools/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/block",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//async/event:go_default_library",
|
|
"//proto/prysm/v1alpha1/block:go_default_library",
|
|
],
|
|
)
|