3
0
Files
corteza/system/renderer/funcs.go
Tomaž Jerman bba02ec9df Implement base valuestore for env variables
* Base facility to store generic values,
* integrate with templates,
* integrate with workflows.
2022-08-02 13:13:28 +02:00

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)
}
}