blob: c8ca99e81a92235500818f5fd649a8a9210f3353 [file] [log] [blame]
Serge Bazanski0d9e1252024-09-03 12:16:47 +02001load("@io_bazel_rules_go//go:def.bzl", "go_library")
2
3go_library(
4 name = "tconsole",
5 srcs = [
6 "colors.go",
7 "draw.go",
8 "page_status.go",
9 "tconsole.go",
10 ],
11 importpath = "source.monogon.dev/metropolis/node/core/tconsole",
12 visibility = ["//visibility:public"],
13 deps = [
14 "//metropolis/node/core/network",
15 "//metropolis/node/core/roleserve",
16 "//metropolis/proto/common",
17 "//metropolis/version",
18 "//osbase/event",
19 "//osbase/supervisor",
20 "//version",
21 "@com_github_gdamore_tcell_v2//:tcell",
22 "@com_github_rivo_uniseg//:uniseg",
23 ],
24)