blob: 172fd998a682420fbeef9028a7227a630097bebc [file] [log] [blame]
Serge Bazanski77628312023-02-15 23:33:22 +01001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "webug",
5 srcs = [
6 "functions.go",
7 "views.go",
8 "webug.go",
9 ],
10 embedsrcs = [
11 "templates/base.html",
12 "templates/fragment_tag.html",
13 "templates/fragment_tag_default.html",
14 "templates/fragment_tag_provided.html",
15 "templates/machines.html",
16 "templates/machine.html",
17 ],
18 importpath = "source.monogon.dev/cloud/bmaas/bmdb/webug",
19 visibility = ["//visibility:public"],
20 deps = [
21 "//cloud/bmaas/bmdb",
22 "//cloud/bmaas/bmdb/model",
23 "//cloud/bmaas/bmdb/reflection",
24 "@com_github_cenkalti_backoff_v4//:backoff",
25 "@com_github_google_uuid//:uuid",
26 "@io_k8s_klog_v2//:klog",
27 ],
28)