Merge pull request #9 from aerth/const2var

Consider allowing compiler to reassign the value of ProgramName
This commit is contained in:
Brian Buller 2017-04-04 16:32:44 -05:00 committed by GitHub
commit f2d0291391
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ import (
/*
ProgramName is the name of the program
*/
const ProgramName = "boltbrowser"
var ProgramName = "boltbrowser"
var databaseFile string
var db *bolt.DB