2014-04-26 09:18:56 +00:00
|
|
|
package Configuration
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"github.com/SommerEngineering/Ocean/Configuration/Meta"
|
|
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
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
|
2014-04-26 09:18:56 +00:00
|
|
|
)
|