blob: 539328dcf72dc7e76fba0176f61c10586cfa9553 [file] [log] [blame]
Serge Bazanskie0c06172023-09-19 12:28:16 +00001load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
2
3go_library(
4 name = "clitable",
5 srcs = ["table.go"],
6 importpath = "source.monogon.dev/go/clitable",
7 visibility = ["//visibility:public"],
8)
9
10go_test(
11 name = "clitable_test",
12 srcs = ["table_test.go"],
13 embed = [":clitable"],
14)