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")