* Base facility to store generic values, * integrate with templates, * integrate with workflows.
10 lines
192 B
Go
10 lines
192 B
Go
package renderer
|
|
|
|
import "github.com/cortezaproject/corteza-server/pkg/valuestore"
|
|
|
|
func envGetter() func(k string) any {
|
|
return func(k string) any {
|
|
return valuestore.Global().Env(k)
|
|
}
|
|
}
|