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