get.porter.sh/porter@v1.3.0/pkg/cli/main_helpers.go (about)

     1  package cli
     2  
     3  const (
     4  	// ExitCodeSuccess indicates the program ran successfully.
     5  	ExitCodeSuccess = 0
     6  
     7  	// ExitCodeErr indicates the program encountered an error.
     8  	ExitCodeErr = 1
     9  
    10  	// ExitCodeInterrupt indicates the program was cancelled.
    11  	ExitCodeInterrupt = 2
    12  )