Bazel structure and bin to convert HallOfBeorn dump to CSV for ALEP pipeline

This commit is contained in:
Christian Nieves
2023-07-19 00:38:38 -05:00
commit 0359a73df0
20 changed files with 615 additions and 0 deletions

18
cmd/test/BUILD Normal file
View 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"],
)