mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
21 lines
499 B
Python
21 lines
499 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "objx",
|
|
srcs = [
|
|
"accessors.go",
|
|
"conversions.go",
|
|
"doc.go",
|
|
"map.go",
|
|
"mutations.go",
|
|
"security.go",
|
|
"tests.go",
|
|
"type_specific.go",
|
|
"type_specific_codegen.go",
|
|
"value.go",
|
|
],
|
|
importmap = "peridot.resf.org/vendor/github.com/stretchr/objx",
|
|
importpath = "github.com/stretchr/objx",
|
|
visibility = ["//visibility:public"],
|
|
)
|