blob: 07f5112726727ab0a2466ffcf9bc60e2be3762f0 [file] [log] [blame]
Serge Bazanskia7674672021-05-30 21:09:34 +00001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2load("@io_bazel_rules_go//extras:embed_data.bzl", "go_embed_data")
3
4go_embed_data(
5 name = "templates",
6 srcs = [
Serge Bazanski4d7b2f02021-05-31 22:33:51 +00007 "index.html",
Serge Bazanskia7674672021-05-30 21:09:34 +00008 ],
9 package = "templates",
10)
11
12# keep
13go_library(
14 name = "templates_go",
15 srcs = [":templates"],
16 importpath = "code.hackerspace.pl/hscloud/hswaw/site/templates",
17 visibility = ["//visibility:public"],
18)