mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
d38f3be8b9
* Add uint32 and uint64 support * Add sample usage and its test * BUILD file fix * Add period in go doc comments.
24 lines
512 B
Python
24 lines
512 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"decode.go",
|
|
"doc.go",
|
|
"encode.go",
|
|
"encoder_decoder_lib.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/ssz",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = [
|
|
"decode_test.go",
|
|
"encode_test.go",
|
|
"example_and_test.go",
|
|
],
|
|
embed = [":go_default_library"],
|
|
)
|