mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
037c01f4d7
* archive flags * gaz * create archiver * register archiver in node * registering the head updater feed * add more gazelle * cancel func * test for service * properly utilize the mocks * lint * remove extraneous log * add back write to disk * gaz
14 lines
367 B
Python
14 lines
367 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"archive.go",
|
|
"base.go",
|
|
"interop.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/flags",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = ["@com_github_urfave_cli//:go_default_library"],
|
|
)
|