14 lines
		
	
	
		
			171 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			171 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package gen
 | 
						|
 | 
						|
import (
 | 
						|
	"strings"
 | 
						|
	"text/template"
 | 
						|
)
 | 
						|
 | 
						|
var funcs = template.FuncMap{
 | 
						|
	"tolower": strings.ToLower,
 | 
						|
	"firstchar": func(s string) string {
 | 
						|
		return s[:1]
 | 
						|
	},
 | 
						|
}
 |