1
0
Fork 0
hscloud/bgpwtf/invoice/templates/BUILD.bazel

19 lines
463 B
Python

load("@io_bazel_rules_go//extras:bindata.bzl", "bindata")
load("@io_bazel_rules_go//go:def.bzl", "go_library")
bindata(
name = "templates_bindata",
srcs = glob(["*"]),
extra_args = ["."],
package = "templates",
)
go_library(
name = "templates",
srcs = [
":templates_bindata", # keep
],
importpath = "code.hackerspace.pl/hscloud/bgpwtf/invoice/templates", # keep
visibility = ["//bgpwtf/invoice:__subpackages__"],
)