mirror of
https://github.com/bazel-contrib/bazel-lib
synced 2024-11-25 11:32:33 +00:00
12 lines
256 B
Python
12 lines
256 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "common",
|
|
srcs = [
|
|
"copy.go",
|
|
"file.go",
|
|
],
|
|
importpath = "github.com/aspect-build/bazel-lib/tools/common",
|
|
visibility = ["//visibility:public"],
|
|
)
|