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"], )