Initial commit.

binary for converting HallOfBeornDump to CSV for ALEP pipeline
This commit is contained in:
Laramie Leavitt
2016-03-02 01:00:40 -08:00
committed by Christian Nieves
commit 6bfc5a98ce
21 changed files with 616 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"],
)