mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-03 08:37:37 +00:00
ca90acca77
* Create a feature flagging system * Refactor how featureflags works and improve docs * Gazelle and final touches * Refactor, new flags in the package * Remove old flags since they have been moved * Fix bazel * Update to comments * Full coverage * Fix formatting * Align code with numbers * Run bazel and fix docs * Fix test for flag
23 lines
592 B
Python
23 lines
592 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"config.go",
|
|
"flags.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/featureconfig",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_urfave_cli//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["config_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["@com_github_urfave_cli//:go_default_library"],
|
|
)
|