0
0
Fork 0
mirror of https://gitea.plemya-x.ru/Plemya-x/ALR.git synced 2025-01-11 01:36:45 +00:00
ALR/pkg/gen/funcs.go

14 lines
171 B
Go
Raw Normal View History

2024-01-22 10:36:06 +00:00
package gen
import (
"strings"
"text/template"
)
var funcs = template.FuncMap{
"tolower": strings.ToLower,
"firstchar": func(s string) string {
return s[:1]
},
}