Ocean/Configuration/Variables.go

14 lines
558 B
Go
Raw Permalink Normal View History

package Configuration
import (
"github.com/SommerEngineering/Ocean/Configuration/Meta"
LM "github.com/SommerEngineering/Ocean/Log/Meta"
)
var (
2015-06-17 15:44:52 +00:00
filename = "configuration.json" // Where is the configuration located?
configuration Meta.Configuration = Meta.Configuration{} // The loaded configuration
isInit = false // Is the configuration loaded?
senderName LM.Sender = `System::Configuration` // This is the name for logging event from this package
)