Cut over to Bazel.

This commit is contained in:
2023-05-04 14:00:30 -07:00
parent ad03c5f991
commit d66cfe1145
50 changed files with 1214 additions and 0 deletions

14
testio/BUILD.bazel Normal file
View File

@@ -0,0 +1,14 @@
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
go_library(
name = "testio",
srcs = ["testio.go"],
importpath = "git.wntrmute.dev/kyle/goutils/testio",
visibility = ["//visibility:public"],
)
go_test(
name = "testio_test",
srcs = ["testio_test.go"],
embed = [":testio"],
)