goutils/lib/defs.go

12 lines
198 B
Go
Raw Normal View History

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
)