manager/magefiles/internal/templatefuncs/templatefuncs.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

9 lines
126 B
Go

package templatefuncs
import "text/template"
func FuncMap() template.FuncMap {
return template.FuncMap{
"env": Env,
}
}