lure/pkg/gen/funcs.go

14 lines
171 B
Go
Raw Normal View History

2023-10-10 20:38:39 +00:00
package gen
import (
"strings"
"text/template"
)
2023-10-10 20:38:39 +00:00
var funcs = template.FuncMap{
"tolower": strings.ToLower,
2023-10-10 20:38:39 +00:00
"firstchar": func(s string) string {
return s[:1]
},
}