blob: fc0f04d654b5122d04afca2aabf9244077e450ea [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 Bazanski717aad42021-07-11 16:03:43 +00007 "animations.js",
Serge Bazanski4d7b2f02021-05-31 22:33:51 +00008 "landing.css",
Serge Bazanski717aad42021-07-11 16:03:43 +00009 "led.js",
10 "neon-syrenka.svg",
Serge Bazanski1f062302021-06-01 22:24:34 +000011 "@com_npmjs_leaflet//:distfiles",
Serge Bazanski717aad42021-07-11 16:03:43 +000012 "space.jpg",
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)