Files
lotr/cmd/beornextract/BUILD
Christian Nieves ec97dae46b add build targets
2023-07-12 21:40:39 -05:00

18 lines
362 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 = ["@com_github_davecgh_go_spew//spew"],
)