2014-04-26 09:18:56 +00:00
|
|
|
package ConfigurationDB
|
|
|
|
|
2014-10-19 17:19:11 +00:00
|
|
|
import (
|
|
|
|
"github.com/SommerEngineering/Ocean/Configuration/Meta"
|
|
|
|
LM "github.com/SommerEngineering/Ocean/Log/Meta"
|
|
|
|
"gopkg.in/mgo.v2"
|
|
|
|
)
|
2014-04-26 09:18:56 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
session *mgo.Session = nil
|
|
|
|
db *mgo.Database = nil
|
|
|
|
collection *mgo.Collection = nil
|
|
|
|
config Meta.Configuration = Meta.Configuration{}
|
|
|
|
senderName LM.Sender = `System::ConfigurationDB`
|
|
|
|
)
|