manager/magefiles/internal/templatefuncs/env.go
Dan Anglin a909803b29
refactor: reorganise magefiles
Reorganise and refactor the magefiles to make it more manageable and
reduce duplication.
2024-09-14 05:58:43 +01:00

7 lines
95 B
Go

package templatefuncs
import "os"
func Env(value string) string {
return os.Getenv(value)
}