github.com/defang-io/defang/src@v0.0.0-20240505002154-bdf411911834/cmd/cli/command/exitcode.go (about) 1 package command 2 3 import "fmt" 4 5 type ExitCode int 6 7 func (e ExitCode) Error() string { 8 return fmt.Sprintf("exit code %d", e) 9 }