mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-09 11:11:20 +00:00
fc193b09bf
* initial implementation * it works * tests * extracted helper functions * fix code --------- Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
16 lines
394 B
Python
16 lines
394 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"request.go",
|
|
"structs.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/beacon-chain/rpc/eth/shared",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//encoding/bytesutil:go_default_library",
|
|
"//network:go_default_library",
|
|
],
|
|
)
|