goutils/die
Kyle Isom f6d227946b Get rid of bazel.
Good riddance. More of a headache than it's worth.
2024-05-19 20:24:38 -07:00
..
README.md Initial import. 2015-06-10 16:32:04 -07:00
die.go Add boolean function to die. 2016-04-28 14:15:22 -07:00

README.md

Simple fatal utilities for Go programs.

	result, err := doSomething()
	die.If(err)

	ok := processResult(result)
	if !ok {
		die.With("failed to process result %s", result.Name)
	}