From 5dcadef341e3cff2a1bd0c214a0b05a062ac0894 Mon Sep 17 00:00:00 2001 From: alessio Date: Thu, 18 Aug 2016 17:32:17 +0200 Subject: [PATCH] vars capitalization --- realize/app.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/realize/app.go b/realize/app.go index 317068c..e50a7a3 100644 --- a/realize/app.go +++ b/realize/app.go @@ -8,12 +8,12 @@ import ( ) const ( - appName = "Realize" - appVersion = "v1.0" - appEmail = "pracchia@hastega.it" - appDescription = "Run, install or build your applications on file changes. Output preview and multi project support" - appAuthor = "Alessio Pracchia" - appFile = "realize.config.yaml" + AppName = "Realize" + AppVersion = "v1.0" + AppEmail = "pracchia@hastega.it" + AppDescription = "Run, install or build your applications on file changes. Output preview and multi project support" + AppAuthor = "Alessio Pracchia" + AppFile = "realize.config.yaml" ) var wg sync.WaitGroup @@ -35,11 +35,11 @@ type App struct { // Init is an instance of app with default values func Init() *App { return &App{ - Name: appName, - Version: appVersion, - Description: appDescription, - Author: appAuthor, - Email: appEmail, + Name: AppName, + Version: AppVersion, + Description: AppDescription, + Author: AppAuthor, + Email: AppEmail, } }