From 02924293ff31d413df30e70de754f62d63680055 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Wed, 27 Apr 2016 11:51:41 -0400 Subject: [PATCH] Removing unused vars --- app.go | 9 --------- 1 file changed, 9 deletions(-) diff --git a/app.go b/app.go index d839f39..b87ab9c 100644 --- a/app.go +++ b/app.go @@ -11,15 +11,6 @@ import ( "time" ) -var ( - // DefaultSuccessExitCode is the default for use with os.Exit intended to - // indicate success - DefaultSuccessExitCode = 0 - // DefaultErrorExitCode is the default for use with os.Exit intended to - // indicate an error - DefaultErrorExitCode = 1 -) - // App is the main structure of a cli application. It is recommended that // an app be created with the cli.NewApp() function type App struct {