blob: 4756da49a4ed675702732ca814b65b8884a37d85 [file] [log] [blame]
Sergiusz Bazanskifb18c992019-05-01 12:27:03 +02001load("@io_bazel_rules_go//extras:bindata.bzl", "bindata")
2load("@io_bazel_rules_go//go:def.bzl", "go_library")
3
4bindata(
5 name = "templates_bindata",
6 srcs = glob(["*"]),
7 extra_args = ["."],
8 package = "templates",
9)
10
11go_library(
12 name = "go_default_library",
13 srcs = [
14 ":templates_bindata", # keep
15 ],
Sergiusz Bazanskicea71e32019-07-21 15:30:08 +020016 importpath = "code.hackerspace.pl/hscloud/bgpwtf/invoice/templates", # keep
17 visibility = ["//bgpwtf/invoice:__subpackages__"],
Sergiusz Bazanskifb18c992019-05-01 12:27:03 +020018)