mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
17 lines
479 B
Python
17 lines
479 B
Python
|
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"],
|
||
|
)
|