lure/pkg/gen/funcs.go

10 lines
126 B
Go
Raw Normal View History

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