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