mirror of
https://github.com/roleypoly/roleypoly.git
synced 2025-04-25 03:49:11 +00:00
21 lines
434 B
Text
21 lines
434 B
Text
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
go_library(
|
|
name = "common",
|
|
srcs = [
|
|
"await-exit.go",
|
|
"envconfig.go",
|
|
"finders.go",
|
|
],
|
|
importpath = "github.com/roleypoly/roleypoly/src/common",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_test(
|
|
name = "common_test",
|
|
srcs = [
|
|
"envconfig_test.go",
|
|
"finders_test.go",
|
|
],
|
|
embed = [":common"],
|
|
)
|