blob: 539328dcf72dc7e76fba0176f61c10586cfa9553 [file] [log] [blame] [edit]
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "clitable",
srcs = ["table.go"],
importpath = "source.monogon.dev/go/clitable",
visibility = ["//visibility:public"],
)
go_test(
name = "clitable_test",
srcs = ["table_test.go"],
embed = [":clitable"],
)