ezbookkeeping/pkg/settings/setting_container.go

21 lines
471 B
Go

package settings
// ConfigContainer contains the current setting config
type ConfigContainer struct {
current *Config
}
// Initialize a config container singleton instance
var (
Container = &ConfigContainer{}
)
// SetCurrentConfig sets the current config by a given config
func SetCurrentConfig(config *Config) {
Container.current = config
}
// GetCurrentConfig returns the current config
func (c *ConfigContainer) GetCurrentConfig() *Config {
return c.current
}