All checks were successful
Go Action / goaction (pull_request) Successful in 4m52s
10 lines
217 B
Smarty
10 lines
217 B
Smarty
type {{.StructName}} struct {
|
|
{{.ParentStruct}}
|
|
{{ .Name }} string
|
|
}
|
|
|
|
// {{.FuncName}} {{.Description}}.
|
|
func (i {{.ParentStruct}}) {{.FuncName}}(key string) {{.StructName}} {
|
|
return {{.StructName}}{i,key}
|
|
}
|