vars capitalization

This commit is contained in:
alessio 2016-08-18 17:32:17 +02:00
parent 22cbd0565a
commit 5dcadef341

View File

@ -8,12 +8,12 @@ import (
) )
const ( const (
appName = "Realize" AppName = "Realize"
appVersion = "v1.0" AppVersion = "v1.0"
appEmail = "pracchia@hastega.it" AppEmail = "pracchia@hastega.it"
appDescription = "Run, install or build your applications on file changes. Output preview and multi project support" AppDescription = "Run, install or build your applications on file changes. Output preview and multi project support"
appAuthor = "Alessio Pracchia" AppAuthor = "Alessio Pracchia"
appFile = "realize.config.yaml" AppFile = "realize.config.yaml"
) )
var wg sync.WaitGroup var wg sync.WaitGroup
@ -35,11 +35,11 @@ type App struct {
// Init is an instance of app with default values // Init is an instance of app with default values
func Init() *App { func Init() *App {
return &App{ return &App{
Name: appName, Name: AppName,
Version: appVersion, Version: AppVersion,
Description: appDescription, Description: AppDescription,
Author: appAuthor, Author: AppAuthor,
Email: appEmail, Email: AppEmail,
} }
} }