summaryrefslogtreecommitdiff
path: root/service/env/provider.go
blob: 2918f18c3314811d2b4cd2012b6522beb1e50f29 (plain)
1
2
3
4
5
6
7
8
package env

// Provider aggregates list of environment variables. This interface can be used in custom implementation to drive
// values from external sources.
type Provider interface {
	// GetEnv must return list of env variables.
	GetEnv() (map[string]string, error)
}