blob: 07f5112726727ab0a2466ffcf9bc60e2be3762f0 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("@io_bazel_rules_go//extras:embed_data.bzl", "go_embed_data")
go_embed_data(
name = "templates",
srcs = [
"index.html",
],
package = "templates",
)
# keep
go_library(
name = "templates_go",
srcs = [":templates"],
importpath = "code.hackerspace.pl/hscloud/hswaw/site/templates",
visibility = ["//visibility:public"],
)