Bazel structure and bin to convert HallOfBeorn dump to CSV for ALEP pipeline
This commit is contained in:
18
cmd/test/BUILD
Normal file
18
cmd/test/BUILD
Normal file
@ -0,0 +1,18 @@
|
||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
||||
|
||||
go_library(
|
||||
name = "test_lib",
|
||||
srcs = ["main.go"],
|
||||
importpath = "github.com/squk/lotr/cmd/test",
|
||||
visibility = ["//visibility:private"],
|
||||
deps = [
|
||||
"@com_github_davecgh_go_spew//spew",
|
||||
"@com_github_mattn_go_sqlite3//:go-sqlite3",
|
||||
],
|
||||
)
|
||||
|
||||
go_binary(
|
||||
name = "test",
|
||||
embed = [":test_lib"],
|
||||
visibility = ["//visibility:public"],
|
||||
)
|
Reference in New Issue
Block a user