switch to more idiomatic var syntax

This commit is contained in:
buddhamagnet 2015-07-08 23:22:12 +01:00
parent 5adf13e381
commit f71e66f8e1
1 changed files with 4 additions and 2 deletions

View File

@ -1,8 +1,10 @@
package main
// The git commit that was compiled. This will be filled in by the compiler.
var GitCommit string
var GitDescribe string
var (
GitCommit string
GitDescribe string
)
// The main version number that is being run at the moment.
const Version = "0.5.2"