add build targets

This commit is contained in:
Christian Nieves
2023-07-12 21:40:39 -05:00
parent 28fae2c39d
commit ec97dae46b
4 changed files with 20 additions and 20 deletions

View File

@ -12,6 +12,6 @@ alias(
go_library(
name = "beornextract_lib",
srcs = ["main.go"],
importpath = "github.com/squk/lotr/beornextract",
importpath = "github.com/squk/lotr/cmd/beornextract",
deps = ["@com_github_davecgh_go_spew//spew"],
)

View File

@ -3,6 +3,6 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "types",
srcs = ["card.go"],
importpath = "github.com/squk/lotr/beornextract/types",
importpath = "github.com/squk/lotr/cmd/beornextract/types",
visibility = ["//visibility:public"],
)