mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
29 lines
865 B
Python
29 lines
865 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
||
|
|
||
|
go_library(
|
||
|
name = "go_default_library",
|
||
|
srcs = [
|
||
|
"doc.go",
|
||
|
"service.go",
|
||
|
],
|
||
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/operations/voluntaryexits",
|
||
|
visibility = ["//beacon-chain:__subpackages__"],
|
||
|
deps = [
|
||
|
"//beacon-chain/core/helpers:go_default_library",
|
||
|
"//shared/params:go_default_library",
|
||
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
||
|
],
|
||
|
)
|
||
|
|
||
|
go_test(
|
||
|
name = "go_default_test",
|
||
|
size = "small",
|
||
|
srcs = ["service_test.go"],
|
||
|
embed = [":go_default_library"],
|
||
|
deps = [
|
||
|
"//shared/params:go_default_library",
|
||
|
"@com_github_gogo_protobuf//proto:go_default_library",
|
||
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
||
|
],
|
||
|
)
|