27 lines
469 B
Go
27 lines
469 B
Go
|
package oclib
|
||
|
|
||
|
import "sync"
|
||
|
|
||
|
// ===================================================
|
||
|
// This class has to be updated everytime
|
||
|
// a new configuration variable is defined
|
||
|
// in a componant that imports oc-lib
|
||
|
// ===================================================
|
||
|
|
||
|
type Config struct {
|
||
|
MongoURL string
|
||
|
DCNAME string
|
||
|
DBPOINT string
|
||
|
|
||
|
}
|
||
|
|
||
|
var instance *Config
|
||
|
var once sync.Once
|
||
|
|
||
|
func GetConfig() *Config {
|
||
|
once.Do(func() {
|
||
|
instance = &Config{}
|
||
|
})
|
||
|
return instance
|
||
|
}
|