manager/magefiles/internal/templatefuncs/templatefuncs.go

10 lines
126 B
Go
Raw Normal View History

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