Adding logging and some common functions.

This commit is contained in:
Kyle
2015-09-22 03:27:14 -07:00
parent 49444c3318
commit 0750c235b6
6 changed files with 496 additions and 0 deletions

11
lib/defs.go Normal file
View File

@@ -0,0 +1,11 @@
package lib
// Various constants used throughout the tools.
const (
// ExitSuccess is the successful exit status.
ExitSuccess = 0
// ExitFailure is the failing exit status.
ExitFailure = 1
)