summaryrefslogtreecommitdiff
path: root/service/env/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'service/env/config.go')
-rw-r--r--service/env/config.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/service/env/config.go b/service/env/config.go
index d0ba686b..a7da695e 100644
--- a/service/env/config.go
+++ b/service/env/config.go
@@ -14,3 +14,9 @@ type Config struct {
func (c *Config) Hydrate(cfg service.Config) error {
return cfg.Unmarshal(&c.Values)
}
+
+// InitDefaults allows to init blank config with pre-defined set of default values.
+func (c *Config) InitDefaults() error {
+ c.Values = make(map[string]string)
+ return nil
+}