summaryrefslogtreecommitdiff
path: root/service/env/config.go
blob: 1b743e84adf65afb1214a80cfb6385c22464d245 (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)
}