mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 18:51:19 +00:00
0498e0a4d5
* fix the path * gaz
26 lines
749 B
Python
26 lines
749 B
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["options.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/cmd/beacon-chain/storage",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//beacon-chain/db/filesystem:go_default_library",
|
|
"//beacon-chain/node:go_default_library",
|
|
"//cmd:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["options_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//cmd:go_default_library",
|
|
"//testing/assert:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|