mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-08 23:18:15 -05:00
14 lines
396 B
Python
14 lines
396 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
testonly = True,
|
|
srcs = ["requires.go"],
|
|
importpath = "github.com/OffchainLabs/prysm/v7/testing/require",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//testing/assertions:go_default_library",
|
|
"@com_github_sirupsen_logrus//hooks/test:go_default_library",
|
|
],
|
|
)
|