2015-09-22 10:27:14 +00:00
|
|
|
package lib
|
|
|
|
|
|
|
|
// Various constants used throughout the tools.
|
|
|
|
|
|
|
|
const (
|
|
|
|
// ExitSuccess is the successful exit status.
|
2015-12-23 21:23:59 +00:00
|
|
|
//
|
|
|
|
// It should be called on successful exit.
|
2015-09-22 10:27:14 +00:00
|
|
|
ExitSuccess = 0
|
|
|
|
|
|
|
|
// ExitFailure is the failing exit status.
|
|
|
|
ExitFailure = 1
|
|
|
|
)
|