Files
lotr/cmd/beornextract/BUILD
Christian Nieves 4060a5c274 add build targets
2023-07-12 21:45:10 -05:00

21 lines
413 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
package(
default_visibility = ["//visibility:public"],
)
alias(
name = "beornextract",
actual = "//beornextract/",
)
go_library(
name = "beornextract_lib",
srcs = ["main.go"],
importpath = "github.com/squk/lotr/cmd/beornextract",
deps = [
"//cmd/beornextract/types",
"@com_github_davecgh_go_spew//spew",
],
)