mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
c1280867ed
* add tracing request sink * fix struct order * add in base64 encode and gzip * add encoding and gzip * tracing sink and replay tool * post * replay * include latest sink and replay tool * capture the gzout file instead * rem time sleep * handle err * better handling * add documentation * changes * working sync * working * added more logging
17 lines
467 B
Python
17 lines
467 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
|
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/replay-http",
|
|
visibility = ["//visibility:private"],
|
|
deps = ["@com_github_sirupsen_logrus//:go_default_library"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "replay-http",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|