summaryrefslogtreecommitdiff
path: root/internal/funcs/env.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/funcs/env.go')
-rw-r--r--internal/funcs/env.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/funcs/env.go b/internal/funcs/env.go
index 61ed9be4..5ec5a17a 100644
--- a/internal/funcs/env.go
+++ b/internal/funcs/env.go
@@ -8,11 +8,11 @@ import (
)
// CreateEnvFuncs -
-func CreateEnvFuncs(ctx context.Context) map[string]interface{} {
+func CreateEnvFuncs(ctx context.Context) map[string]any {
ns := &EnvFuncs{ctx}
- return map[string]interface{}{
- "env": func() interface{} { return ns },
+ return map[string]any{
+ "env": func() any { return ns },
"getenv": ns.Getenv,
}
}
@@ -23,11 +23,11 @@ type EnvFuncs struct {
}
// Getenv -
-func (EnvFuncs) Getenv(key interface{}, def ...string) string {
+func (EnvFuncs) Getenv(key any, def ...string) string {
return env.Getenv(conv.ToString(key), def...)
}
// ExpandEnv -
-func (EnvFuncs) ExpandEnv(s interface{}) string {
+func (EnvFuncs) ExpandEnv(s any) string {
return env.ExpandEnv(conv.ToString(s))
}