blob: d70c620d971dab2a752fcba626a475c9c1f29bb7 [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 = "static",
6 srcs = [
Serge Bazanski4d7b2f02021-05-31 22:33:51 +00007 "leaflet.css",
8 "leaflet.js",
9 "landing.css",
10 "syrenka.png",
11 "images/marker-icon.png",
12 "images/marker-shadow.png",
Serge Bazanskia7674672021-05-30 21:09:34 +000013 ],
14 package = "static",
15)
16
17# keep
18go_library(
19 name = "static_go",
20 srcs = [":static"],
21 importpath = "code.hackerspace.pl/hscloud/hswaw/site/static",
22 visibility = ["//visibility:public"],
23)