summaryrefslogtreecommitdiff
path: root/structs.go
blob: 89c5177c57e340e83f727cfba4f87dfc0ffe501b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package ENV

import (
	"errors"
	sync "sync"
)

var envPB *Keys

// lock access to the PB
var saveMu sync.RWMutex

// these are normally what are sent from ldflags
var APPNAME string
var BUILDTIME string
var VERSION string

var argv []string

var NotInitialized error = errors.New("your application config not initialized")