mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 03:31:20 +00:00
dd3ac6c2ed
* begin migration logic * wrote migration logic * begin test file * test for migration working * gaz * progressutil * migration works even if partial data was written
13 lines
383 B
Python
13 lines
383 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["progress.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/progressutil",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"@com_github_k0kubun_go_ansi//:go_default_library",
|
|
"@com_github_schollz_progressbar_v3//:go_default_library",
|
|
],
|
|
)
|