mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-05 14:31:22 +00:00
11 lines
386 B
Python
11 lines
386 B
Python
|
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
||
|
|
||
|
go_library(
|
||
|
name = "formatter",
|
||
|
srcs = ["formatter.go"],
|
||
|
importmap = "peridot.resf.org/vendor/github.com/jstemmer/go-junit-report/formatter",
|
||
|
importpath = "github.com/jstemmer/go-junit-report/formatter",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = ["//vendor/github.com/jstemmer/go-junit-report/parser"],
|
||
|
)
|