Removing unused vars

This commit is contained in:
Dan Buch 2016-04-27 11:51:41 -04:00
parent 9e8ead512a
commit 02924293ff
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC

9
app.go
View File

@ -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 {