summaryrefslogtreecommitdiff
path: root/service/env/provider.go
blob: 75a1e31b7a40682d86a56c533c5295d5e88e27db (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
}