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

8
die/BUILD.bazel Normal file
View File

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