blob: 3166853291dca9d6e06a5093408e917ba1ca003e [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "static",
srcs = ["static.go"],
importpath = "github.com/frc971/971-Robot-Code/scouting/webserver/static",
target_compatible_with = ["@platforms//cpu:x86_64"],
visibility = ["//visibility:public"],
deps = ["//scouting/webserver/server"],
)
go_test(
name = "static_test",
srcs = ["static_test.go"],
data = [
"test_pages/page.txt",
"test_pages/root.txt",
],
embed = [":static"],
target_compatible_with = ["@platforms//cpu:x86_64"],
deps = ["//scouting/webserver/server"],
)