summaryrefslogtreecommitdiff
path: root/service/env/config.go
blob: d0ba686bb0ee180ab096268cd0f4436442e0cc49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package env

import (
	"github.com/spiral/roadrunner/service"
)

// Config defines set of env values for RR workers.
type Config struct {
	// values to set as worker _ENV.
	Values map[string]string
}

// Hydrate must populate Config values using given Config source. Must return error if Config is not valid.
func (c *Config) Hydrate(cfg service.Config) error {
	return cfg.Unmarshal(&c.Values)
}