mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 07:28:06 -05:00
16 lines
406 B
Python
16 lines
406 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"blob.go",
|
|
"data_column.go",
|
|
],
|
|
importpath = "github.com/OffchainLabs/prysm/v7/runtime/logging",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//consensus-types/blocks:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|