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 77d7ed4078
21 changed files with 616 additions and 0 deletions

25
BUILD Normal file
View File

@ -0,0 +1,25 @@
package(
default_visibility = ["//visibility:public"],
)
load("@bazel_gazelle//:def.bzl", "gazelle")
# gazelle:prefix github.com/squk/lotr
# gazelle:build_file_name BUILD
gazelle(name = "gazelle")
gazelle(
name = "gazelle-update-repos",
args = [
"-from_file=go.mod",
"-to_macro=deps.bzl%go_dependencies",
"-prune",
"-build_file_proto_mode=disable_global",
],
command = "update-repos",
)
alias(
name = "beornextract",
actual = "//cmd/beornextract:beornextract",
)