Changed the conf object to the conf package for better accessibility

This commit is contained in:
pb 2023-10-31 10:30:01 +01:00
parent de3a4a016e
commit d0870083f7

19
conf/conf.go Normal file
View File

@ -0,0 +1,19 @@
package conf
import "sync"
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
}