mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-12-26 20:20:56 +00:00
16 lines
479 B
Text
16 lines
479 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "require",
|
|
srcs = [
|
|
"doc.go",
|
|
"forward_requirements.go",
|
|
"require.go",
|
|
"require_forward.go",
|
|
"requirements.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/stretchr/testify/require",
|
|
importpath = "github.com/stretchr/testify/require",
|
|
visibility = ["//visibility:public"],
|
|
deps = ["//vendor/github.com/stretchr/testify/assert"],
|
|
)
|