blob: d5ea71decbc0b538c654872f479334fa68b24187 [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",
radex41a3cfe2021-09-01 20:19:04 +020013 "frezarka.jpg",
14 "tokarka.jpg",
15 "kuka.jpg",
16 "serwerownia.jpg",
Serge Bazanskia7674672021-05-30 21:09:34 +000017 ],
18 package = "static",
19)
20
21# keep
22go_library(
23 name = "static_go",
24 srcs = [":static"],
25 importpath = "code.hackerspace.pl/hscloud/hswaw/site/static",
26 visibility = ["//visibility:public"],
27)