blob: 4b7baa3df2a70625f5602cf414d862b148cd22e0 [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(
Serge Bazanski97b5cd72023-07-28 17:14:50 +000012 name = "templates",
Sergiusz Bazanskifb18c992019-05-01 12:27:03 +020013 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)