mirror of
https://github.com/writefreely/writefreely
synced 2024-11-24 17:43:05 +00:00
Move softwareVer to var() block
This commit is contained in:
parent
6ed9fef88f
commit
f0250d501f
1 changed files with 3 additions and 3 deletions
6
app.go
6
app.go
|
@ -36,12 +36,12 @@ const (
|
|||
softwareURL = "https://writefreely.org"
|
||||
)
|
||||
|
||||
// Software version can be set from git env using -ldflags
|
||||
var softwareVer = "0.3"
|
||||
|
||||
var (
|
||||
debugging bool
|
||||
|
||||
// Software version can be set from git env using -ldflags
|
||||
softwareVer = "0.3"
|
||||
|
||||
// DEPRECATED VARS
|
||||
// TODO: pass app.cfg into GetCollection* calls so we can get these values
|
||||
// from Collection methods and we no longer need these.
|
||||
|
|
Loading…
Reference in a new issue